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

Last change on this file since 21382 was 21382, checked in by mistic100, 11 years ago

fix caddie button,
fix fatal error for Back2Front,
update ZeroClipboard,
fix breadcrumb and body_id,
unactive for mobile themes,
fix display issues

File size: 3.8 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('resources/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    cursor:pointer;
39  }
40  #publicURL .confirm {
41    font-weight:bold;
42    margin-left:5px;
43  }
44 
45.collecList {
46  list-style:none;
47  padding:0;
48  margin:0;
49}
50  .collecList li {
51    height:35px;
52    padding:5px 10px;
53    margin:4px 0;
54    background:#444;
55    border-radius:4px;
56  }
57    .collecList li.active {
58      background:#555;
59      border:1px solid #999;
60    }
61  .collecList p {
62    margin:0;
63  }
64    .collecList .collecDate {
65      float:right;
66      font-size:0.9em;
67    }
68    .collecList .collecActions { 
69      margin-top:2px;
70      display:none;
71    }
72    .collecList li:hover .collecActions { 
73      display:block;
74    }
75 
76/* SEND BY MAIL */
77#mail_form {
78  width:540px;
79  padding:10px;
80}
81  #mail_form table td {
82    padding-bottom:5px;
83    text-align:left;
84  }
85  #mail_form table td.title {
86    font-weight:bold;
87    text-align:right !important;
88    padding-top:3px;
89    vertical-align:top;
90    width:120px;
91  }
92  #mail_form input[type="text"], #mail_form textarea, #mail_form select {
93    border-radius:2px;
94    padding:3px;
95  }
96 
97/* TipTip CSS - Version 1.2 */
98#tiptip_holder {
99        display: none;
100        position: absolute;
101        top: 0;
102        left: 0;
103        z-index: 99999;
104}
105#tiptip_holder.tip_top {
106        padding-bottom: 5px;
107}
108#tiptip_holder.tip_bottom {
109        padding-top: 5px;
110}
111#tiptip_holder.tip_right {
112        padding-left: 5px;
113}
114#tiptip_holder.tip_left {
115        padding-right: 5px;
116}
117#tiptip_content {
118        font-size: 11px;
119        color: #fff;
120        text-shadow: 0 0 2px #000;
121        padding: 4px 8px;
122        border: 1px solid rgba(255,255,255,0.25);
123        background-color: rgb(25,25,25);
124        background-color: rgba(25,25,25,0.92);
125        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
126        border-radius: 3px;
127        -webkit-border-radius: 3px;
128        -moz-border-radius: 3px;
129        box-shadow: 0 0 3px #555;
130        -webkit-box-shadow: 0 0 3px #555;
131        -moz-box-shadow: 0 0 3px #555;
132}
133#tiptip_arrow, #tiptip_arrow_inner {
134        position: absolute;
135        border-color: transparent;
136        border-style: solid;
137        border-width: 6px;
138        height: 0;
139        width: 0;
140}
141#tiptip_holder.tip_top #tiptip_arrow {
142        border-top-color: #fff;
143        border-top-color: rgba(255,255,255,0.35);
144}
145#tiptip_holder.tip_bottom #tiptip_arrow {
146        border-bottom-color: #fff;
147        border-bottom-color: rgba(255,255,255,0.35);
148}
149#tiptip_holder.tip_right #tiptip_arrow {
150        border-right-color: #fff;
151        border-right-color: rgba(255,255,255,0.35);
152}
153#tiptip_holder.tip_left #tiptip_arrow {
154        border-left-color: #fff;
155        border-left-color: rgba(255,255,255,0.35);
156}
157#tiptip_holder.tip_top #tiptip_arrow_inner {
158        margin-top: -7px;
159        margin-left: -6px;
160        border-top-color: rgb(25,25,25);
161        border-top-color: rgba(25,25,25,0.92);
162}
163#tiptip_holder.tip_bottom #tiptip_arrow_inner {
164        margin-top: -5px;
165        margin-left: -6px;
166        border-bottom-color: rgb(25,25,25);
167        border-bottom-color: rgba(25,25,25,0.92);
168}
169#tiptip_holder.tip_right #tiptip_arrow_inner {
170        margin-top: -6px;
171        margin-left: -5px;
172        border-right-color: rgb(25,25,25);
173        border-right-color: rgba(25,25,25,0.92);
174}
175#tiptip_holder.tip_left #tiptip_arrow_inner {
176        margin-top: -6px;
177        margin-left: -7px;
178        border-left-color: rgb(25,25,25);
179        border-left-color: rgba(25,25,25,0.92);
180}
Note: See TracBrowser for help on using the repository browser.