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

Last change on this file since 20090 was 20090, checked in by mistic100, 11 years ago
  • add webservices
  • add mail function
  • add admin list
  • add admin export function
  • try to deal with Gthumb+
  • activate multisize dropdown menu of collection page

TODO : use webservices instead of toggle_image.php

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  }
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/* SEND BY MAIL */
76#mail_form {
77  width:540px;
78  padding:10px;
79}
80  #mail_form table td {
81    padding-bottom:5px;
82    text-align:left;
83  }
84  #mail_form table td.title {
85    font-weight:bold;
86    text-align:right !important;
87    padding-top:3px;
88    vertical-align:top;
89    width:120px;
90  }
91  #mail_form input[type="text"], #mail_form textarea, #mail_form select {
92    border-radius:2px;
93    padding:3px;
94  }
95 
96/* TipTip CSS - Version 1.2 */
97#tiptip_holder {
98        display: none;
99        position: absolute;
100        top: 0;
101        left: 0;
102        z-index: 99999;
103}
104#tiptip_holder.tip_top {
105        padding-bottom: 5px;
106}
107#tiptip_holder.tip_bottom {
108        padding-top: 5px;
109}
110#tiptip_holder.tip_right {
111        padding-left: 5px;
112}
113#tiptip_holder.tip_left {
114        padding-right: 5px;
115}
116#tiptip_content {
117        font-size: 11px;
118        color: #fff;
119        text-shadow: 0 0 2px #000;
120        padding: 4px 8px;
121        border: 1px solid rgba(255,255,255,0.25);
122        background-color: rgb(25,25,25);
123        background-color: rgba(25,25,25,0.92);
124        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
125        border-radius: 3px;
126        -webkit-border-radius: 3px;
127        -moz-border-radius: 3px;
128        box-shadow: 0 0 3px #555;
129        -webkit-box-shadow: 0 0 3px #555;
130        -moz-box-shadow: 0 0 3px #555;
131}
132#tiptip_arrow, #tiptip_arrow_inner {
133        position: absolute;
134        border-color: transparent;
135        border-style: solid;
136        border-width: 6px;
137        height: 0;
138        width: 0;
139}
140#tiptip_holder.tip_top #tiptip_arrow {
141        border-top-color: #fff;
142        border-top-color: rgba(255,255,255,0.35);
143}
144#tiptip_holder.tip_bottom #tiptip_arrow {
145        border-bottom-color: #fff;
146        border-bottom-color: rgba(255,255,255,0.35);
147}
148#tiptip_holder.tip_right #tiptip_arrow {
149        border-right-color: #fff;
150        border-right-color: rgba(255,255,255,0.35);
151}
152#tiptip_holder.tip_left #tiptip_arrow {
153        border-left-color: #fff;
154        border-left-color: rgba(255,255,255,0.35);
155}
156#tiptip_holder.tip_top #tiptip_arrow_inner {
157        margin-top: -7px;
158        margin-left: -6px;
159        border-top-color: rgb(25,25,25);
160        border-top-color: rgba(25,25,25,0.92);
161}
162#tiptip_holder.tip_bottom #tiptip_arrow_inner {
163        margin-top: -5px;
164        margin-left: -6px;
165        border-bottom-color: rgb(25,25,25);
166        border-bottom-color: rgba(25,25,25,0.92);
167}
168#tiptip_holder.tip_right #tiptip_arrow_inner {
169        margin-top: -6px;
170        margin-left: -5px;
171        border-right-color: rgb(25,25,25);
172        border-right-color: rgba(25,25,25,0.92);
173}
174#tiptip_holder.tip_left #tiptip_arrow_inner {
175        margin-top: -6px;
176        margin-left: -7px;
177        border-left-color: rgb(25,25,25);
178        border-left-color: rgba(25,25,25,0.92);
179}
Note: See TracBrowser for help on using the repository browser.