source: extensions/UserCollections/template/style.css @ 17914

Last change on this file since 17914 was 17914, checked in by mistic100, 12 years ago

display public url in a input with auto-select

File size: 3.4 KB
Line 
1#colProperties {}
2  #colProperties p {
3    text-align:left;
4    margin:2px 0;
5  }
6  #colProperties p.title {
7    font-weight:bold;
8  }
9  #colProperties p:not(.title) {
10    margin-bottom:10px;
11  }
12 
13#publicURL {
14  display:inline-block;
15  height:22px;
16}
17  #publicURL .url {
18    display:inline-block;
19    height:14px;
20    vertical-align:bottom;
21    padding:3px 10px;
22    background:#fff;
23    font-family:monospace;
24    font-size:12px;
25    color:#666;
26    border:1px solid #999;
27    border-radius:0 3px 3px 0;
28  }
29  #publicURL .button {
30    display:inline-block;
31    background:#e7e7e7 url('link.png') center center no-repeat;
32    width:25px;
33    height:20px;
34    vertical-align:bottom;
35    border:1px solid #999;
36    border-right:none;
37    border-radius:3px 0 0 3px;
38  }
39  #publicURL .confirm {
40    font-weight:bold;
41    margin-left:5px;
42  }
43 
44.collecList {
45  list-style:none;
46  padding:0;
47  margin:0;
48}
49  .collecList li {
50    height:35px;
51    padding:5px 10px;
52    margin:4px 0;
53    background:#444;
54    border-radius:4px;
55  }
56    .collecList li.active {
57      background:#555;
58      border:1px solid #999;
59    }
60  .collecList p {
61    margin:0;
62  }
63    .collecList .collecDate {
64      float:right;
65      font-size:0.9em;
66    }
67    .collecList .collecActions { 
68      margin-top:2px;
69      display:none;
70    }
71    .collecList li:hover .collecActions { 
72      display:block;
73    }
74 
75 
76/* TipTip CSS - Version 1.2 */
77#tiptip_holder {
78        display: none;
79        position: absolute;
80        top: 0;
81        left: 0;
82        z-index: 99999;
83}
84#tiptip_holder.tip_top {
85        padding-bottom: 5px;
86}
87#tiptip_holder.tip_bottom {
88        padding-top: 5px;
89}
90#tiptip_holder.tip_right {
91        padding-left: 5px;
92}
93#tiptip_holder.tip_left {
94        padding-right: 5px;
95}
96#tiptip_content {
97        font-size: 11px;
98        color: #fff;
99        text-shadow: 0 0 2px #000;
100        padding: 4px 8px;
101        border: 1px solid rgba(255,255,255,0.25);
102        background-color: rgb(25,25,25);
103        background-color: rgba(25,25,25,0.92);
104        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
105        border-radius: 3px;
106        -webkit-border-radius: 3px;
107        -moz-border-radius: 3px;
108        box-shadow: 0 0 3px #555;
109        -webkit-box-shadow: 0 0 3px #555;
110        -moz-box-shadow: 0 0 3px #555;
111}
112#tiptip_arrow, #tiptip_arrow_inner {
113        position: absolute;
114        border-color: transparent;
115        border-style: solid;
116        border-width: 6px;
117        height: 0;
118        width: 0;
119}
120#tiptip_holder.tip_top #tiptip_arrow {
121        border-top-color: #fff;
122        border-top-color: rgba(255,255,255,0.35);
123}
124#tiptip_holder.tip_bottom #tiptip_arrow {
125        border-bottom-color: #fff;
126        border-bottom-color: rgba(255,255,255,0.35);
127}
128#tiptip_holder.tip_right #tiptip_arrow {
129        border-right-color: #fff;
130        border-right-color: rgba(255,255,255,0.35);
131}
132#tiptip_holder.tip_left #tiptip_arrow {
133        border-left-color: #fff;
134        border-left-color: rgba(255,255,255,0.35);
135}
136#tiptip_holder.tip_top #tiptip_arrow_inner {
137        margin-top: -7px;
138        margin-left: -6px;
139        border-top-color: rgb(25,25,25);
140        border-top-color: rgba(25,25,25,0.92);
141}
142#tiptip_holder.tip_bottom #tiptip_arrow_inner {
143        margin-top: -5px;
144        margin-left: -6px;
145        border-bottom-color: rgb(25,25,25);
146        border-bottom-color: rgba(25,25,25,0.92);
147}
148#tiptip_holder.tip_right #tiptip_arrow_inner {
149        margin-top: -6px;
150        margin-left: -5px;
151        border-right-color: rgb(25,25,25);
152        border-right-color: rgba(25,25,25,0.92);
153}
154#tiptip_holder.tip_left #tiptip_arrow_inner {
155        margin-top: -6px;
156        margin-left: -7px;
157        border-left-color: rgb(25,25,25);
158        border-left-color: rgba(25,25,25,0.92);
159}
Note: See TracBrowser for help on using the repository browser.