source: trunk/admin/template/goto/default-layout.css @ 5089

Last change on this file since 5089 was 5089, checked in by plg, 14 years ago

feature 1489: integrate UploadForm into Piwigo core. The integration is not
100% done, I just "made it work" on trunk.

pclzip library was updated to version 2.8.2 for memory usage improvement.

  • Property svn:eol-style set to LF
File size: 11.5 KB
Line 
1
2/* History tables */
3TABLE.table2 {
4        border: 1px solid #111;
5        margin: 1em auto;
6        padding: 0;
7}
8
9TABLE.table2 TD, TABLE.table2 TH {
10        padding: 0 5px;
11}
12
13TABLE.table2 TR {
14        text-align: left;
15}
16
17TABLE.table2 THEAD TD { padding:7px 10px 3px 10px; }
18TABLE.table2 TR.throw { text-align: center; }
19TABLE.table2 { margin:0pt auto; }
20.sort { display:block; padding:8px 5px 0px 1px; clear: right; text-align:left; }
21
22
23.hour {
24        white-space: pre;
25}
26
27.number {
28        text-align: right;
29}
30
31TABLE#dailyStats {
32        width: 60%;
33}
34
35TABLE#detailedStats {
36        width: 99%;
37}
38
39/* Plugins tables */
40TABLE.plugins { min-width: 400px; }
41TABLE.plugins A { border: 0; }
42TABLE.plugins TR TD { padding: 4px 10px; }
43TABLE.plugins TR TD.pluginState { padding: 4px 16px; }
44
45TABLE.plugins TR TD.active {
46        background: url(icon/plugin_active.gif) no-repeat center left;
47        background-color: inherit; /* IE need it */
48}
49
50TABLE.plugins TR TD.inactive {
51        background: url(icon/plugin_inactive.gif) no-repeat center left;
52        background-color: inherit; /* IE need it */
53}
54
55TABLE.plugins ul.pluginsActions {
56        float: left;
57        padding: 0;
58        margin: 0;
59        width: 60px;
60        list-style: none;
61        text-align: center;
62}
63
64TABLE.plugins ul.pluginsActions li { display: inline; }
65
66/* categoryOrdering */
67SELECT.categoryList {
68        width: 100%;
69}
70 
71FORM#categoryOrdering {
72        padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
73        padding-right: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
74}
75FORM#categoryOrdering p {
76        text-align: left;
77        margin-top: 1em;
78        margin-bottom: 1em;
79}
80UL.categoryUl {
81        list-style: none;
82        padding: 0;
83        margin: 0;
84}
85
86LI.categoryLi {
87        width: 100%;
88        border: 1px solid #666;
89        padding: 0px 5px;
90        margin-bottom: 5px;
91}
92
93FORM#categoryOrdering UL.categoryActions {
94        float: right;
95        margin-top: 5px;
96}
97/* */
98
99FORM#catModify TABLE { width: auto; }
100
101FIELDSET.elementEdit A {
102        display: block;
103        float: right;
104}
105
106TABLE.doubleSelect {
107        text-align: center;
108        margin: 0 auto;
109        width: 100%;
110}
111
112TABLE.doubleSelect TD {
113        padding: 0 3px;
114        width: 50%;
115}
116
117TABLE.doubleSelect SELECT.categoryList {
118        width: 100%; max-width: 100%; overflow-x: auto;
119}
120
121FORM#categoryPermissions LI {
122        display:inline;
123        white-space: nowrap;
124}
125
126FIELDSET#mainConfCheck SPAN.property,
127FIELDSET#historyConf SPAN.property,
128FIELDSET#commentsConf SPAN.property,
129FIELDSET#uploadConf SPAN.property {
130        float: right;
131        text-align: left;
132}
133FIELDSET#mainConfCheck INPUT,
134FIELDSET#historyConf INPUT,
135FIELDSET#commentsConf INPUT,
136FIELDSET#uploadConf INPUT {
137        float: none;
138}
139
140FIELDSET#mainConf SPAN.property {
141        width: 25%;
142}
143FIELDSET#mainConf TEXTAREA.description {
144        width: 70%;
145}
146
147FIELDSET#mainConfCheck SPAN.property,
148FIELDSET#historyConf SPAN.property {
149        width: 90%;
150}
151FIELDSET#mainConfCheck INPUT,
152FIELDSET#historyConf INPUT,
153FIELDSET#commentsConf INPUT {
154        margin-left: 5%;
155}
156FIELDSET#uploadConf SELECT {
157        float: right;
158        margin: 2px 10px 0px;
159}
160FIELDSET#uploadConf INPUT {
161        float: right;
162        margin: 5px 10px 0px;
163}
164FIELDSET#uploadConf SPAN.property {
165        width: 65%;
166}
167FIELDSET#commentsConf SPAN.property {
168        width: 85%;
169}
170
171.statBar {
172        height: 10px;
173        background-color: #ff7700;
174        border: 1px solid #666;
175}
176
177.over{
178position: relative;
179z-index: 0;
180}
181
182.over:hover{
183background-color: transparent;
184z-index: 50;
185}
186
187.over SPAN{ /*CSS for enlarged image*/
188position: absolute;
189background-color: #222;
190padding: 5px;
191left: -1000px;
192border: 1px solid #ff3363;
193visibility: hidden;
194color: black;
195text-decoration: none;
196}
197
198.over SPAN IMG{ /*CSS for enlarged image*/
199border-width: 0;
200padding: 2px;
201}
202
203.over:hover SPAN{ /*CSS for enlarged image on hover*/
204visibility: visible;
205top: 0;
206left: 60px; /*position where enlarged image should offset horizontally */
207}
208
209BODY {
210        margin: 5px;
211        padding: 0;
212        font-size: 0.8em;
213        font-family: Univers, Helvetica, Optima, "Bitstream Vera Sans", sans-serif;
214        text-align: center; /* be nice to IE5 */
215}
216
217H1 {
218        text-align: center;
219        font-size: 150%;
220        font-weight: bold;
221        padding: 0;
222        margin: 0.5em 0 1em 0;
223}
224
225H2 {
226        margin: 0;
227        padding: 5px 0.5em 5px 0.5em;
228        text-align: left;
229        font-size: 120%;
230}
231
232A {
233        text-decoration:none;
234        border-bottom: 0;
235}
236A:hover {
237        border-bottom: 1px solid #FF3363;
238}
239A.button, A.button:hover { 
240        border: 0; 
241}
242IMG {
243        border: none;
244}
245
246HR.separation {
247        visibility: hidden;
248        clear: both;
249}
250
251#copyright {
252        clear: both;
253        font-size: 83%;
254        text-align: center;
255        margin: 0 0 10px 0;
256}
257
258/** General defaults **/
259INPUT, SELECT {
260        margin: 0;
261        font-size: 1em; /* <= some browsers don't set it correctly */
262}
263UL, DL, OL { text-align: left;}
264TABLE { /* horizontaly centered */
265        margin-left: auto;
266        margin-right: auto;
267}
268/* for debugging purpose */
269PRE { text-align:left; }
270
271/** forms **/
272
273FORM { padding: 0em; }
274
275FORM P {
276        text-align: center;
277        margin-top: 2em;
278        margin-bottom: 2em;
279}
280
281FORM FIELDSET P {
282        margin-top: 1em;
283        margin-bottom: 0;
284}
285
286.small {
287        font-size: 80%;
288}
289
290TEXTAREA.description {
291        height: 6em;
292        width: 40em;
293        overflow: auto;
294}
295
296SELECT.categoryList {
297        height: 20em;
298        width: auto;
299}
300
301DIV.comment BLOCKQUOTE {
302        padding: 0.5em;
303        overflow: auto; /* no solution for IE6 */
304        min-height: 2.75em;     /* fix a Gecko bug whith scrollbar and 1 line only */
305}
306
307
308/**
309 * Filter forms are displayed label by label with the input (or select...)
310 * below the label. Use an UL to make a group (radiobox for instance).
311 * Use a SPAN to group objects in line
312 */
313FIELDSET {
314        padding: 1em;
315        margin: 1em;
316        overflow: hidden; /* <- makes Opera happy */
317}
318
319FORM.filter FIELDSET UL {
320        margin: 0;
321}
322FORM.filter FIELDSET UL,
323FORM.filter FIELDSET LABEL {
324        display: block;
325        float: left;
326        margin-right: 1em;
327        padding: 0;
328}
329
330FORM.filter FIELDSET LI {
331        list-style: none;
332        margin-bottom: 0.5em;
333}
334
335FORM.filter FIELDSET LI LABEL {
336        display: inline;
337        float: none;
338}
339
340FORM.filter FIELDSET UL.tagSelection LABEL {
341        display: inline;
342        float: none;
343        margin-right:0.5em;/*reduce from above*/
344}
345
346/* cannot use FIELDSET>LABEL because of IE<=6 */
347FORM.filter FIELDSET LABEL INPUT,
348FORM.filter FIELDSET LABEL SELECT,
349FORM.filter FIELDSET LABEL SPAN,
350FORM.filter FIELDSET LABEL TEXTAREA {
351        display: block;
352        margin: 0.5em 0;
353}
354FORM.filter FIELDSET * LABEL INPUT,
355FORM.filter FIELDSET * LABEL SELECT,
356FORM.filter FIELDSET * LABEL TEXTAREA,
357FORM.filter FIELDSET LABEL SPAN INPUT,
358FORM.filter FIELDSET LABEL SPAN SELECT,
359FORM.filter FIELDSET LABEL SPAN TEXTAREA {
360        display: inline;
361        vertical-align: top;
362        margin: 0 0.5em 0 0;
363}
364
365FORM.filter FIELDSET UL.tagSelection LI LABEL INPUT {
366        margin-right:0;
367}
368
369/* following declaration is important to avoid strange FF behaviour */
370FORM.filter FIELDSET LABEL SPAN SELECT {
371        margin: 0;
372}
373
374FORM.filter FIELDSET P
375{
376        clear: left;
377        display: block;
378}
379
380FORM.filter INPUT[type="submit"] {
381        margin-top: 1.8em;
382}
383
384FORM.properties UL, FORM#update UL {
385        list-style-type: none;
386        margin: 0;
387        padding: 0;
388}
389
390FORM.properties LI, FORM#update UL {
391        margin-bottom: 0.5em;
392        padding: 0;
393        line-height: 1.8em;
394        clear: left;
395}
396
397FORM.properties SPAN.property {
398        font-weight: bold;
399        float: left;
400        width: 50%;
401        text-align: right;
402        margin: 0;
403        padding: 0 0.5em 0 0;
404}
405
406#theHeader H1 {
407        margin-bottom: 0.5em;
408}
409
410/* button tools */
411UL.actions {
412        text-indent: 0;
413        list-style: none;
414}
415UL.actions LI {
416        display: inline;
417}
418UL.actions A {
419        border: none;
420}
421
422UL.tagSelection {
423        width: 99%;
424        margin: 1em 0 1em 0;
425        padding: 0;
426}
427
428UL.tagSelection LI {
429        display: inline;
430        white-space: nowrap;
431}
432
433
434/* jQuery tooltips */
435.cluetip-default #cluetip-outer {
436        position: relative;
437        border: 1px solid #111111;
438        color: #dddddd;
439        background-color: #222222;
440        text-align: left;
441}
442.cluetip-default h3#cluetip-title {
443        margin: 0 0 5px;
444        padding: 8px;
445        color: #666666;
446        background-color: #d3d3d3;
447        font-size: 1.1em;
448        font-weight: bold;
449}
450.cluetip-default #cluetip-inner {
451        padding: 10px;
452}
453
454/* jQuery datepicker */
455img.ui-datepicker-trigger {
456        cursor : pointer;
457}
458
459/* jQuery FCBKcomplete */
460/* TextboxList sample CSS */
461ul.holder { margin: 0; border: 1px solid #999; overflow: hidden; height: auto !important; height: 1%; padding: 4px 5px 0; }
462*:first-child+html ul.holder { padding-bottom: 2px; } * html ul.holder { padding-bottom: 2px; } /* ie7 and below */
463ul.holder li { float: left; list-style-type: none; margin: 0 5px 4px 0; white-space:nowrap;}
464ul.holder li.bit-box, ul.holder li.bit-input input { font: 11px "Lucida Grande", "Verdana"; }
465ul.holder li.bit-box { -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; border: 1px solid #CAD8F3; background: #DEE7F8; padding: 1px 5px 2px; }
466ul.holder li.bit-box-focus { border-color: #598BEC; background: #598BEC; color: #fff; }
467ul.holder li.bit-input input { width: auto; overflow:visible; margin: 0; border: 0px; outline: 0; padding: 3px 0px 2px; } /* no left/right padding here please */
468ul.holder li.bit-input input.smallinput { width: 20px; }
469
470/* Facebook demo CSS */     
471#add { border: 1px solid #999; width: 550px; margin: 50px; padding: 20px 30px 10px; }
472form ol li { list-style-type: none; }
473form ol { font: 11px "Lucida Grande", "Verdana"; margin: 0; padding: 0; }
474form ol li.input-text { margin-bottom: 10px; list-style-type: none; padding-bottom: 10px; }
475form ol li.input-text label { font-weight: bold; cursor: pointer; display: block; font-size: 13px; margin-bottom: 10px; }
476form ol li.input-text input { width: 500px; padding: 5px 5px 6px; font: 11px "Lucida Grande", "Verdana"; border: 1px solid #999; }
477form ul.holder { width: 500px; }
478form ul { margin: 0 !important }
479ul.holder li.bit-box, #apple-list ul.holder li.bit-box { padding-right: 15px; position: relative; z-index:1000;}
480#apple-list ul.holder li.bit-input { margin: 0; }
481#apple-list ul.holder li.bit-input input.smallinput { width: 5px; }
482ul.holder li.bit-hover { background: #BBCEF1; border: 1px solid #6D95E0; }
483ul.holder li.bit-box-focus { border-color: #598BEC; background: #598BEC; color: #fff; }
484ul.holder li.bit-box a.closebutton { position: absolute; right: 4px; top: 5px; display: block; width: 7px; height: 7px; font-size: 1px; background: url(icon/fcbkcomplete_close.gif); }
485ul.holder li.bit-box a.closebutton:hover { background-position: 7px; }
486ul.holder li.bit-box-focus a.closebutton, ul.holder li.bit-box-focus a.closebutton:hover { background-position: bottom; }
487
488/* Autocompleter */
489
490.facebook-auto { display: none; position: absolute; width: 512px; background: #eee; }
491.facebook-auto .default { padding: 5px 7px; border: 1px solid #ccc; border-width: 0 1px 1px;font-family:"Lucida Grande","Verdana"; font-size:11px; }
492.facebook-auto ul { display: none; margin: 0; padding: 0; overflow: auto; position:absolute; z-index:9999}
493.facebook-auto ul li { padding: 5px 12px; z-index: 1000; cursor: pointer; margin: 0; list-style-type: none; border: 1px solid #ccc; border-width: 0 1px 1px; font: 11px "Lucida Grande", "Verdana"; background-color: #eee }
494.facebook-auto ul li em { font-weight: bold; font-style: normal; background: #ccc; }
495.facebook-auto ul li.auto-focus { background: #4173CC; color: #fff; }
496.facebook-auto ul li.auto-focus em { background: none; }
497.deleted { background-color:#4173CC !important; color:#ffffff !important;}
498.hidden { display:none;}
499
500#demo ul.holder li.bit-input input { padding: 2px 0 1px; border: 1px solid #999; }
501.ie6fix {height:1px;width:1px; position:absolute;top:0px;left:0px;z-index:1;}
502
503/* Add photos, direct mode */
504#uploadBoxes P {
505  margin:0;
506  margin-bottom:2px;
507  padding:0;
508}
509
510#batchLink {
511  text-align:center;
512}
513
514.category_selection {
515  min-height:65px;
516  margin-top:5px;
517}
518
519.category_selection TABLE {
520  margin:0;
521}
522
523.formField {
524  width:650px;
525  margin:0 auto 20px auto;
526  padding:10px;
527  border: 2px solid #292929;
528}
529
530.formFieldTitle {
531  font-weight:bold;
532  margin-bottom:10px;
533}
534
535.formField P {
536  margin:0;
537}
538
539.formField TH {
540  text-align:right;
541  padding-right: 5px;
542}
543
544#uploadFormSettings input[type="text"] {
545  text-align:right;
546}
547
548#uploadFormSettings TH {
549  width:50%;
550}
Note: See TracBrowser for help on using the repository browser.