source: trunk/admin/themes/default/theme.css @ 13013

Last change on this file since 13013 was 13013, checked in by plg, 12 years ago

feature 2561: redesign on album administration screen.

  • only one form on the screen and several tabs
  • simpler URL pattern : page=album-123-properties / page=album-123-sort_order / page=album-123-permissions
  • action to associate all photos of an album to another (new) virtual album was removed. This can be easily done with the new Batch Manager
  • notification by email on an album still has to be moved on a new dedicated tab
  • action icons (jump to album, manage photos, manage sub-albums, delete album...) replaced by plain text links
  • Property svn:eol-style set to LF
File size: 24.9 KB
Line 
1/* content.css */
2
3/* .Content  is on every pages so it is common and it will no longer be a specific css */
4.content h2 {margin: 0; padding: 5px 0.5em 5px 0.5em; text-align: right; font-size: 120%;}
5.content .navigationBar { margin: 10px 0; text-align: center; }
6.content form { text-align: left; }
7.content dt { margin-bottom: 5px; font-style: italic;
8  font-size: 110%; }
9.content ul.categoryActions a img, ul.categoryActions a {
10border:0; margin-bottom:-5px; }
11ul.categoryActions { margin: 0 2px; width: auto; list-style-position:outside;
12  padding: 0; text-indent: 0; list-style: none; text-align: center; }
13.content div.titrePage ul.categoryActions { float: right; }
14.content div.titrePage { padding: 0 0 3px; }
15.content ul.categoryActions li { display: inline; }
16.content div.comment { margin: 0 0 0.5em 0; padding: 0;
17  overflow: hidden; width: 100%;        /* don't ask why. It's a very usefull trick  */ }
18
19.content DIV.comment A.illustration {
20        display: block;
21        float: left;
22        margin: 0.5em 30px 0 0.5em;
23}
24
25.content div.comment p.commentHeader {
26  text-align: right; margin: 0.5em 0.5em 0 0; }
27.content div.comment ul.actions { text-align: center; margin: 0.2em; }
28.content div.comment blockquote {
29  margin-right: 0.5em; overflow: visible; /*avoid a very strange margin behaviour (all browsers) */ }
30
31/* not used but should be */
32#thePopuphelpPage .content { margin: 1em; }
33
34/* thumbnails.css */
35UL.thumbnails {
36  margin: 0; padding: 0; list-style: none;
37  text-align: center;   /* to center the whole collection in .content */
38  float: left;
39}
40UL.thumbnails LI { display: inline }
41UL.thumbnails li.rank-of-image {
42  float: left;
43  background-color: #333;
44  color: #666;
45  -moz-border-radius: 5px;
46  display: block;
47  width: 104px;
48  height: 104px;
49  cursor: move;
50  margin: 10px;
51}
52.clipwrapper {
53  position:relative;
54  width: 96px;
55  height: 96px;
56  margin: 3px;
57}
58.clip {
59  position:absolute;
60}
61UL.thumbnails li.rank-of-image input {
62}
63UL.thumbnails SPAN.wrap1 {
64  margin: 5px;
65  display: table-cell; display: inline-table;
66  display: inline-block; /* Why 3 display option ??? */
67  vertical-align: top;          /* OK with Opera and IE6 not Geko */
68  text-align: center;           /* to center the thumbnail and legend in Geko/Opera */
69}
70UL.thumbnails SPAN.wrap2 {
71  margin: 0;                    /* important reset the margins */
72  display: table-cell;          /* block prevents vertical-align here */
73  vertical-align: middle;       /* Ok with Opera and Geko not IE6 */
74}
75UL.thumbnails LABEL { display: block; border-bottom: none; }
76UL.thumbnails IMG {
77  margin-bottom: -4px;  /* why ??? something wrong with Geko and Opera ignored by IE6*/
78}
79UL.thumbnails LABEL { position: relative; }
80UL.thumbnails INPUT {
81  position: relative;   /* <= Opera can handle relative here */
82  top: -20px;
83}
84:root UL.thumbnails INPUT { /* hide from Opera */
85  position: absolute;   /* <= Opera hide 1 checkbox over 2 !!! */
86  left: 2px; top: 2px;
87}
88UL.thumbnails .levelIndicatorB {
89display:block; position:absolute; z-index:100;padding:0px 0 0 14px; color:black; font-weight:bold; font-size:120%;
90}
91UL.thumbnails .levelIndicatorF {
92display:block; position:absolute; z-index:101;padding:1px 0 0 15px; color:white; font-weight:bold; font-size:120%;
93}
94
95/* default-layout.css */
96
97/* History tables */
98TABLE.table2 {
99        border: 1px solid #111;
100        margin: 1em auto;
101        padding: 0;
102}
103
104TABLE.table2 TD, TABLE.table2 TH {
105        padding: 0 5px;
106}
107
108TABLE.table2 TR {
109        text-align: left;
110}
111
112TABLE.table2 THEAD TD { padding:7px 10px 3px 10px; }
113TABLE.table2 TR.throw { text-align: center; }
114TABLE.table2 { margin:0pt auto; }
115.sort { display:block; padding:8px 5px 0px 1px; clear: right; float:left; }
116
117
118.hour {
119        white-space: pre;
120}
121
122.number {
123        text-align: right;
124}
125
126TABLE#dailyStats {
127        width: 60%;
128}
129
130TABLE#detailedStats {
131        width: 99%;
132}
133
134/* Plugins, languages tables */
135TABLE.plugins,
136TABLE.languages {
137  min-width: 500px;
138}
139TABLE.plugins A { border: 0; }
140TABLE.plugins TR TD { padding: 4px 10px; }
141TABLE.languages TR TD { padding: 7px 20px; }
142
143
144/* categoryOrdering */
145FORM#categoryOrdering .orderParams {
146  line-height:30px;
147  margin-bottom:10px;
148}
149
150SELECT.categoryList {
151        width: 100%;
152}
153
154FORM#categoryOrdering {
155        padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
156        padding-right: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
157}
158FORM#categoryOrdering p {
159        text-align: left;
160        margin-top: 1em;
161        margin-bottom: 1em;
162}
163UL.categoryUl {
164        list-style: none;
165        padding: 0;
166        margin: 0;
167}
168
169LI.categoryLi {
170        width: 100%;
171        border: 1px solid #666;
172        padding: 0px 5px;
173        margin-bottom: 5px;
174}
175
176FORM#categoryOrdering UL.categoryActions {
177        float: right;
178        height:45px;
179        line-height:45px;
180}
181/* */
182
183/* menuOrdering */
184FORM#menuOrdering {
185        padding-left: 1em;
186        padding-right: 1em;
187}
188FORM#menuOrdering p {
189        text-align: left;
190        margin: 0 10px;
191}
192FORM#menuOrdering p span {
193        float:right;
194}
195FORM#menuOrdering input {
196        vertical-align: middle;
197  margin:0 10px;
198}
199FORM#menuOrdering .menuAuthor {
200  margin: 5px 0 0 40px;
201}
202FORM#menuOrdering .menuSubmit {
203  margin: 20px 0;
204}
205
206UL.menuUl {
207        list-style: none;
208        padding: 0;
209        margin: 0;
210}
211
212LI.menuLi {
213        width: 100%;
214        border: 1px solid #666;
215        padding: 12px 0;
216        margin-bottom: 5px;
217}
218/* */
219
220FORM#catModify TABLE { width: auto; }
221
222#catModify p {
223  line-height: 20px;
224  margin: 0 0 1.5em;
225  text-align: left;
226}
227
228FIELDSET.elementEdit .thumb {
229        display: block;
230        float: right;
231        text-align: center;
232}
233
234TABLE.doubleSelect {
235        text-align: center;
236        margin: 0 auto;
237        width: 100%;
238}
239
240TABLE.doubleSelect TD {
241        padding: 0 3px;
242        width: 50%;
243}
244
245TABLE.doubleSelect SELECT.categoryList {
246        width: 100%; max-width: 100%; overflow-x: auto;
247}
248
249FORM#categoryPermissions LI {
250        display:inline;
251        white-space: nowrap;
252}
253
254.statBar {
255        height: 10px;
256        background-color: #ff7700;
257        border: 1px solid #666;
258}
259
260.over{
261position: relative;
262z-index: 0;
263}
264
265.over:hover{
266background-color: transparent;
267z-index: 50;
268}
269
270.over SPAN{ /*CSS for enlarged image*/
271position: absolute;
272background-color: #222;
273padding: 5px;
274left: -1000px;
275border: 1px solid #ff3363;
276visibility: hidden;
277color: black;
278text-decoration: none;
279}
280
281.over SPAN IMG{ /*CSS for enlarged image*/
282border-width: 0;
283padding: 2px;
284}
285
286.over:hover SPAN{ /*CSS for enlarged image on hover*/
287visibility: visible;
288top: 0;
289left: 60px; /*position where enlarged image should offset horizontally */
290}
291
292BODY {
293        margin: 5px;
294        padding: 0;
295        font-size: 0.8em;
296        font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
297        text-align: center; /* be nice to IE5 */
298}
299
300H1 {
301color:#eee;
302letter-spacing:1px;
303text-align: left;
304font-size: 150%;
305font-weight: normal;
306font-style:italic;
307padding: 8px 0 0 10px;
308margin: 0;
309float:left;
310}
311
312#pwgHead {color:#aaa;}
313#pwgHead A {color:#ccc;}
314#pwgHead A:hover {color:#fff;border-bottom:1px solid #fff}
315
316#headActions {float:right; height:46px; line-height:46px; margin-right:10px;}
317
318A {
319        text-decoration:none;
320        border-bottom: 0;
321}
322A:hover {
323        border-bottom: 1px solid #FF3363;
324}
325A.button, A.button:hover {
326        border: 0;
327}
328IMG {
329        border: none;
330}
331
332/** General defaults **/
333INPUT, SELECT {
334        margin: 0;
335        font-size: 1em; /* <= some browsers don't set it correctly */
336}
337UL, DL, OL { text-align: left;}
338TABLE { /* horizontaly centered */
339        margin-left: auto;
340        margin-right: auto;
341}
342/* for debugging purpose */
343PRE { text-align:left; }
344
345/** forms **/
346
347FORM { padding: 0em; }
348
349FORM P {
350        text-align: center;
351        margin-top: 2em;
352        margin-bottom: 2em;
353}
354
355form p.field {
356  text-align: left;
357}
358
359FORM FIELDSET P {
360        margin-top: 1em;
361        margin-bottom: 0;
362}
363
364.small {
365        font-size: 80%;
366}
367
368TEXTAREA.description {
369        height: 6em;
370        width: 40em;
371        overflow: auto;
372}
373
374SELECT.categoryList {
375        height: 20em;
376        width: auto;
377}
378
379DIV.comment BLOCKQUOTE {
380        padding: 0.5em;
381        overflow: auto; /* no solution for IE6 */
382        min-height: 2.75em;     /* fix a Gecko bug whith scrollbar and 1 line only */
383}
384
385
386/**
387 * Filter forms are displayed label by label with the input (or select...)
388 * below the label. Use an UL to make a group (radiobox for instance).
389 * Use a SPAN to group objects in line
390 */
391FIELDSET {
392        padding: 1em;
393        margin: 1em;
394        overflow: hidden; /* <- makes Opera happy */
395}
396
397FORM.filter FIELDSET UL {
398        margin: 0;
399}
400FORM.filter FIELDSET UL,
401FORM.filter FIELDSET LABEL {
402        display: block;
403        float: left;
404        margin-right: 1em;
405        padding: 0;
406}
407
408FORM.filter FIELDSET LI {
409        list-style: none;
410        margin-bottom: 0.5em;
411}
412
413FORM.filter FIELDSET LI LABEL {
414        display: inline;
415        float: none;
416}
417
418FORM.filter FIELDSET UL.tagSelection LABEL {
419        display: inline;
420        float: none;
421        margin-right:0.5em;/*reduce from above*/
422}
423
424/* cannot use FIELDSET>LABEL because of IE<=6 */
425FORM.filter FIELDSET LABEL INPUT,
426FORM.filter FIELDSET LABEL SELECT,
427FORM.filter FIELDSET LABEL SPAN,
428FORM.filter FIELDSET LABEL TEXTAREA {
429        display: block;
430        margin: 0.5em 0;
431}
432FORM.filter FIELDSET * LABEL INPUT,
433FORM.filter FIELDSET * LABEL SELECT,
434FORM.filter FIELDSET * LABEL TEXTAREA,
435FORM.filter FIELDSET LABEL SPAN INPUT,
436FORM.filter FIELDSET LABEL SPAN SELECT,
437FORM.filter FIELDSET LABEL SPAN TEXTAREA {
438        display: inline;
439        vertical-align: top;
440        margin: 0 0.5em 0 0;
441}
442
443/* following declaration is important to avoid strange FF behaviour */
444FORM.filter FIELDSET LABEL SPAN SELECT {
445        margin: 0;
446}
447
448FORM.filter FIELDSET P
449{
450        clear: left;
451        display: block;
452}
453
454/*FORM.filter INPUT[type="submit"] {
455        margin-top: 1.8em;
456}*/
457
458FORM.properties UL, FORM#update UL {
459        list-style-type: none;
460        margin: 0;
461        padding: 0;
462}
463
464FORM.properties LI, FORM#update UL {
465        margin-bottom: 0.5em;
466        padding: 0;
467        line-height: 1.8em;
468        clear: left;
469}
470
471FORM.properties SPAN.property {
472        font-weight: bold;
473        float: left;
474        width: 50%;
475        text-align: right;
476        margin: 0;
477        padding: 0 0.5em 0 0;
478}
479
480#mainConf, #historyConf, #commentsConf {border:none}
481
482#configContent label {
483  font-weight: bold;
484}
485
486#mainConf li {
487  margin-bottom: 1em;
488}
489
490#theHeader H1 {
491        margin-bottom: 0.5em;
492}
493
494/* button tools */
495UL.actions {
496        text-indent: 0;
497        list-style: none;
498}
499UL.actions LI {
500        display: inline;
501}
502UL.actions A {
503        border: none;
504}
505
506UL.tagSelection {
507        width: 99%;
508        margin: 1em 0 1em 0;
509        padding: 0;
510}
511
512UL.tagSelection LI {
513        display:inline-block;
514        width:150px!important;
515        overflow:hidden;
516        white-space: nowrap;
517}
518
519/* jQuery tooltips */
520.cluetip-default #cluetip-outer {
521        position: relative;
522        border: 1px solid #111111;
523        color: #dddddd;
524        background-color: #222222;
525        text-align: left;
526}
527.cluetip-default h3#cluetip-title {
528        margin: 0 0 5px;
529        padding: 8px;
530        color: #666666;
531        background-color: #d3d3d3;
532        font-size: 1.1em;
533        font-weight: bold;
534}
535.cluetip-default #cluetip-inner {
536        padding: 10px;
537}
538
539/* jQuery datepicker */
540img.ui-datepicker-trigger {
541  cursor : pointer;
542  vertical-align: middle;
543  margin:-3px 5px 2px 5px;
544}
545
546/* Add photos, direct mode */
547#uploadBoxes P {
548  margin:0;
549  margin-bottom:2px;
550  padding:0;
551}
552
553#batchLink {
554  text-align:center;
555}
556
557.category_selection {
558  min-height:65px;
559  margin-top:5px;
560}
561
562.category_selection TABLE {
563  margin:0;
564}
565
566#photosAddContent {
567  text-align:left;
568}
569
570#photosAddContent FIELDSET {
571  width:650px;
572  margin:0 auto 20px auto;
573}
574
575#photosAddContent P {
576  margin:0;
577}
578
579#photosAddContent TH {
580  text-align:right;
581  padding-right: 5px;
582}
583
584#uploadFormSettings input[type="text"] {
585  text-align:right;
586}
587
588#uploadFormSettings TH {
589  width:50%;
590}
591
592#pwgHead {
593  background-color:#464646;
594  height:46px;
595}
596
597html, body {height:100%; margin:0; padding:0;}
598#the_page {min-height:100%; position:absolute; width:100%; padding:0;margin:0;}
599
600#pwgMain {
601  padding: 10px 5px 60px;
602}
603
604#footer {
605  position:absolute;
606  bottom:0;
607  width:100%;
608  height:46px;
609  background: url(images/logo.png) no-repeat 7px 8px;
610  background-color:#464646;
611  color:#aaa;
612  line-height:46px;
613}
614
615#footer A {color:#ccc;}
616#footer A:hover {color:#fff;border-bottom:1px solid #fff;}
617
618#adminHome {
619  text-align:center;
620  margin-bottom:15px;
621  line-height:30px;
622  width:200px;
623  margin-left:5px;
624  -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
625}
626
627#adminHome A {display:block; font-size:1.1em; font-weight:bold;}
628#adminHome A {border:none;}
629
630#piwigoInfos {float:left; margin-left:140px;}
631#pageInfos {float:right; margin-right:10px;}
632
633/* TipTip CSS - Version 1.2 */
634
635#tiptip_holder {
636        display: none;
637        position: absolute;
638        top: 0;
639        left: 0;
640        z-index: 99999;
641}
642
643#tiptip_holder.tip_top {
644        padding-bottom: 5px;
645}
646
647#tiptip_holder.tip_bottom {
648        padding-top: 5px;
649}
650
651#tiptip_holder.tip_right {
652        padding-left: 5px;
653}
654
655#tiptip_holder.tip_left {
656        padding-right: 5px;
657}
658
659#tiptip_content {
660        font-size: 11px;
661        color: #fff;
662        text-shadow: 0 0 2px #000;
663        padding: 4px 8px;
664        border: 1px solid rgba(255,255,255,0.25);
665        background-color: rgb(25,25,25);
666        background-color: rgba(25,25,25,0.92);
667        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
668        border-radius: 3px;
669        -webkit-border-radius: 3px;
670        -moz-border-radius: 3px;
671        box-shadow: 0 0 3px #555;
672        -webkit-box-shadow: 0 0 3px #555;
673        -moz-box-shadow: 0 0 3px #555;
674}
675
676#tiptip_arrow, #tiptip_arrow_inner {
677        position: absolute;
678        border-color: transparent;
679        border-style: solid;
680        border-width: 6px;
681        height: 0;
682        width: 0;
683}
684
685#tiptip_holder.tip_top #tiptip_arrow {
686        border-top-color: #fff;
687        border-top-color: rgba(255,255,255,0.35);
688}
689
690#tiptip_holder.tip_bottom #tiptip_arrow {
691        border-bottom-color: #fff;
692        border-bottom-color: rgba(255,255,255,0.35);
693}
694
695#tiptip_holder.tip_right #tiptip_arrow {
696        border-right-color: #fff;
697        border-right-color: rgba(255,255,255,0.35);
698}
699
700#tiptip_holder.tip_left #tiptip_arrow {
701        border-left-color: #fff;
702        border-left-color: rgba(255,255,255,0.35);
703}
704
705#tiptip_holder.tip_top #tiptip_arrow_inner {
706        margin-top: -7px;
707        margin-left: -6px;
708        border-top-color: rgb(25,25,25);
709        border-top-color: rgba(25,25,25,0.92);
710}
711
712#tiptip_holder.tip_bottom #tiptip_arrow_inner {
713        margin-top: -5px;
714        margin-left: -6px;
715        border-bottom-color: rgb(25,25,25);
716        border-bottom-color: rgba(25,25,25,0.92);
717}
718
719#tiptip_holder.tip_right #tiptip_arrow_inner {
720        margin-top: -6px;
721        margin-left: -5px;
722        border-right-color: rgb(25,25,25);
723        border-right-color: rgba(25,25,25,0.92);
724}
725
726#tiptip_holder.tip_left #tiptip_arrow_inner {
727        margin-top: -6px;
728        margin-left: -7px;
729        border-left-color: rgb(25,25,25);
730        border-left-color: rgba(25,25,25,0.92);
731}
732
733/* Webkit Hacks  */
734@media screen and (-webkit-min-device-pixel-ratio:0) {
735        #tiptip_content {
736                padding: 4px 8px 5px 8px;
737                background-color: rgba(45,45,45,0.88);
738        }
739        #tiptip_holder.tip_bottom #tiptip_arrow_inner {
740                border-bottom-color: rgba(45,45,45,0.88);
741        }
742        #tiptip_holder.tip_top #tiptip_arrow_inner {
743                border-top-color: rgba(20,20,20,0.92);
744        }
745}
746
747/* Set the width of the menubar for the galery */
748#menubar {
749  width: 18em;
750  margin: 10px 0 50px 5px;
751  display: inline;
752  float: left;
753  left: 0;
754}
755
756.content {
757  padding:0 5px 0 0;
758  margin: 0 5px 0 227px;
759  z-index:99;
760}
761/* Set minimum width of the page before getting a scrollbar */
762/* IE5 and IE6 don't get that */
763BODY {
764  min-width: 60em;  /* ~ 3* #menubar width */
765}
766#thePopuphelpPage {
767  min-width: 0;
768}
769
770#thePopuphelpPage #pwgHead {display:none}
771#thePopuphelpPage #footer  {display:none}
772
773/* Set some sizes according to your maximum thumbnail width and height */
774UL.thumbnails SPAN,
775UL.thumbnails SPAN.wrap2 A,
776UL.thumbnails LABEL {
777  width: 140px;      /* max thumbnail width + 2px */
778}
779UL.thumbnails SPAN.wrap2 {
780  height: 140px;    /* max thumbnail height + 2px */
781}
782
783
784.themeBox {display:inline-table; text-align:center; height:192px; background-color:#eee; margin:5px; -moz-border-radius:5px; overflow:hidden; }
785
786.themeBox IMG {border:1px solid white; margin:0 15px;}
787.themeName {font-size:1.1em; margin:5px 0;}
788.themeActions {display: table-row; font-size:12px; height: 43px; }
789.themeActions DIV {display: table-cell; vertical-align: middle; line-height:18px; }
790.themeActions A {}
791
792#themesContent .themeBox IMG {width:150px; height:120px;}
793#themesContent H3 {font-size:16px; text-align:left; border-bottom:1px solid #444; letter-spacing:1px; margin:5px;}
794.themeBoxes {min-height:0;text-align:left;}
795
796h2 { letter-spacing:1px; font-weight:bold;}
797h2:lang(en) { text-transform:capitalize; }
798
799#pluginsMenuSeparator {width:80%; margin:5px auto;}
800
801#helpContent P {text-align:left; margin-left:10px;}
802#helpContent LI, #ftpPage LI {margin-top:10px;}
803#helpContent P.nextStepLink {text-align:center; font-weight:bold; margin-bottom:20px;}
804
805#availablePlugins FIELDSET  {border:none;}
806
807/**
808 * Informations box in administration
809 */
810.infos, .errors, .warnings {
811  text-align: left;
812  margin: 5px;
813  padding: 10px 50px 10px 10px;
814  font-weight:bold;
815  background-repeat: no-repeat;
816  background-position: 5px 5px;
817  padding:5px 70px 0pt 53px;
818  min-height: 54px;
819}
820
821.infos {
822  color: #0a0;
823  background-color:#c2f5c2;
824  background-image: url(icon/infos.png);
825}
826
827.errors {
828  color: #f22;
829  background-color: #ffd5dc;
830  background-image: url(icon/errors.png);
831}
832
833.warnings {
834  color: #ee8800;
835  background-color:#ffdd99;
836  background-image: url(icon/warnings.png);
837}
838
839.infos li, .errors li, .warnings li { list-style-type:square; }
840.infos .submit {margin-left:30px;}
841
842.checkActions {text-align:left;padding:0;margin:0;}
843.comment A:hover {border:none;}
844
845.pluginBoxes {
846  text-align:left;
847  position:relative;
848}
849
850.pluginBox {
851  margin-bottom:10px;
852  border-width:1px;
853  border-style:solid;
854  border-radius:5px;
855  -moz-border-radius:5px;
856 }
857.pluginBox table {width:99%;}
858.pluginBox td {text-align:left;}
859.pluginBox td.pluginDesc img {vertical-align:middle;}
860.pluginBoxNameCell {width:180px; vertical-align:top;}
861.pluginBoxes .inactive, .pluginBoxes .uninstalled {opacity:0.8;filter:alpha(opacity=80);}
862
863.pluginMiniBox {
864  display:inline-table;
865  text-align:center;
866  width:250px;
867  height:40px;
868  margin:5px;
869  border-width:1px;
870  border-style:solid;
871  border-radius:5px;
872  -moz-border-radius:5px;
873  overflow:hidden;
874 }
875.pluginMiniBoxNameCell {font-size:1.05em; margin:5px 0;position:relative;}
876.pluginActions {display: table-row; font-size:0.95em; color:#777;}
877.pluginActions DIV {display: table-cell; vertical-align: middle; line-height:18px; }
878.showInfo {display:block;position:absolute;top:0;right:5px;width:15px;font-style:italic;font-family:"Georgia",serif;background-color:#464646;font-size:0.9em;border-radius:10px;-moz-border-radius:10px;}
879.showInfo:hover {cursor:pointer}
880
881.warning:before {content:url(icon/warning.png);vertical-align:top;}
882.deactivate_all {text-align:right;font-size:0.95em;}
883.showDetails {text-align:right; margin-bottom:-15px; margin-top:-10px; padding-right:1em;}
884
885.languageBoxes {min-height:0;text-align:left;}
886.languageBox {display:inline-table; text-align:center; width:200px; height:40px; margin:5px; -moz-border-radius:5px;border-radius:5px; overflow:hidden; }
887.languageName {font-size:1.1em; margin:5px 0;}
888.languageActions {display: table-row; font-size:12px; }
889.languageActions DIV {display: table-cell; vertical-align: middle; line-height:18px; }
890
891#ui-datepicker-div {-moz-border-radius:5px;}
892#ui-datepicker-div .ui-icon-circle-triangle-w, #ui-datepicker-div .ui-icon-circle-triangle-e {color:transparent;}
893#ui-datepicker-div A.ui-datepicker-prev, #ui-datepicker-div A.ui-datepicker-next {background-color:transparent;}
894#ui-datepicker-div A.ui-datepicker-prev:hover, #ui-datepicker-div A.ui-datepicker-next:hover {-moz-border-radius:5px;}
895
896.HelpActions {
897  float:right;
898  margin:0;
899  padding:0;
900  padding-top:2px;
901  padding-left:3px;
902}
903
904.HelpActions a { border:0; margin:0; }
905.HelpActions a:hover {border:0;}
906.HelpActions li {list-style-image:none; list-style-position:outside; list-style-type:none; text-align:center; text-indent:0pt; }
907
908legend {text-align:left;}
909
910/* local-layout */
911/* You can modify this file */
912
913/* default-colors */
914/* So that non-links are slightly greyed out */
915.content .navigationBar {
916        color: #999;
917}
918
919/* Tables & forms */
920
921INPUT.text, INPUT.password, INPUT.button,
922INPUT.submit, INPUT.reset, INPUT.file,
923SELECT, TEXTAREA {
924  color:#999;
925  background-color: #666;
926}
927
928INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
929  background-color: #444;       /* whitesmoke */
930}
931
932/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
933INPUT[type="radio"], INPUT[type="checkbox"] {
934  border: none; /* <= Opera needs this */
935}
936
937INPUT.radio, INPUT.checkbox {
938  border: none; /* <= IE6 needs this */
939}
940
941
942/**
943 * Header message like upgrade
944 */
945.header_msgs {
946  text-align:center;
947  font-weight: bold;
948  color:#333;
949  background-color: transparent;
950  margin: 1px;
951  padding: 1px;
952}
953
954/**
955 * Header notes box in public/administration
956 */
957.header_notes {
958  border: 1px solid #666;
959  background: transparent url(icon/note.png) no-repeat right top;
960  font-weight: bold;
961  margin: 14px 24px 14px 14px;
962  padding: 5px 0 0 0;
963  top: 90px;
964  position: absolute;
965  text-align: right;
966}
967
968LEGEND {
969  font-weight: bold;
970  letter-spacing: 1px;
971  padding: 0 10px;
972}
973
974/* Batch Manager, global mode */
975#batchManagerGlobal #action p {text-align:left;}
976#batchManagerGlobal .bulkAction {text-align:left;margin:15px 0;padding:0;}
977#batchManagerGlobal #action_del_tags ul.tagSelection {margin:0 !important; width:620px;}
978#batchManagerGlobal #checkActions {text-align:left; margin:0 0 20px 0;}
979#batchManagerGlobal ul.thumbnails div.actions {display:none;position:absolute;top:0;right:5px;}
980#batchManagerGlobal ul.thumbnails div.actions a {color:#222;}
981#batchManagerGlobal ul.thumbnails span.wrap1:hover div.actions {display:block;}
982#batchManagerGlobal #selectedMessage {padding:5px; -moz-border-radius:5px;-webkit-border-radius:5px;}
983#batchManagerGlobal #selectSet a {border-bottom:1px dotted;}
984#batchManagerGlobal #applyOnDetails {font-style:italic;}
985#batchManagerGlobal .actionButtons {text-align:left;}
986#batchManagerGlobal #filterList {padding-left:5px;}
987#batchManagerGlobal #filterList li {margin-bottom:5px; list-style-type:none;}
988#batchManagerGlobal a.removeFilter {background: url(icon/remove_filter.png) no-repeat top left;width:7px;height:7px;display:inline-block;}
989#batchManagerGlobal a.removeFilter:hover {background: url(icon/remove_filter_hover.png); border:none;}
990#batchManagerGlobal .removeFilter span {display:none}
991#batchManagerGlobal #applyFilterBlock {margin-top:20px;}
992#batchManagerGlobal .useFilterCheckbox {display:none;}
993
994
995/* TokenInput (with Facebook style) */
996ul.token-input-list {overflow: hidden; height: auto !important; height: 1%;width: 400px;border: 1px solid #8496ba;cursor: text;font-size: 12px;font-family: Verdana;min-height: 1px;z-index: 999;margin: 0;padding: 0;background-color: #fff;list-style-type: none;clear: left;}
997ul.token-input-list li input {border: 0;width: 100px;padding: 3px 8px;background-color: white;margin: 2px 0;-webkit-appearance: caret;}
998li.token-input-token {overflow: hidden; height: auto !important; height: 15px;margin: 3px;padding: 1px 3px;background-color: #eff2f7;color: #000;cursor: default;border: 1px solid #ccd5e4;font-size: 11px;border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;float: left;white-space: nowrap;}
999li.token-input-token p {display: inline;padding: 0;margin: 0;}
1000li.token-input-token span {color: #a6b3cf;margin-left: 5px;font-weight: bold;cursor: pointer;}
1001li.token-input-selected-token {background-color: #5670a6;border: 1px solid #3b5998;color: #fff;}
1002li.token-input-input-token {float: left;margin: 0;padding: 0;list-style-type: none;width:10px;}
1003div.token-input-dropdown {position: absolute;width: 400px;background-color: #fff;overflow: hidden;border-left: 1px solid #ccc;border-right: 1px solid #ccc;border-bottom: 1px solid #ccc;cursor: default;font-size: 11px;font-family: Verdana;z-index: 1;}
1004div.token-input-dropdown p {margin: 0;padding: 5px;font-weight: bold;color: #777;}
1005div.token-input-dropdown ul {margin: 0;padding: 0;}
1006div.token-input-dropdown ul li {background-color: #fff;padding: 3px;margin: 0;list-style-type: none;}
1007div.token-input-dropdown ul li.token-input-dropdown-item {background-color: #fff;}
1008div.token-input-dropdown ul li.token-input-dropdown-item2 {background-color: #fff;}
1009div.token-input-dropdown ul li em {font-weight: bold;font-style: normal;}
1010div.token-input-dropdown ul li.token-input-selected-dropdown-item {background-color: #3b5998;color: #fff;}
1011
1012#mainConf a.addFilter {font-weight:normal;margin-left:20px;}
1013#mainConf a.removeFilter {font-weight:normal;}
1014#mainConf span.property span.filter:first-child a.removeFilter {display:none;} /* can't delete the first field */
1015#mainConf span.filter {display:block;margin-left:20px;}
1016#mainConf .transparent {opacity:0.5;filter:alpha(opacity=50);}
1017#mainConf .order_by_is_custom {display:block;font-weight:normal;font-style:italic;margin-left:20px;}
1018
1019/* Upload Form */
1020#uploadBoxes .file {margin-bottom:5px;text-align:left;}
1021#uploadBoxes {margin-top:20px;}
1022#addUploadBox {margin-bottom:2em;}
1023
1024p#uploadWarningsSummary {text-align:left;margin-bottom:1em;font-size:90%;color:#999;}
1025p#uploadWarningsSummary .showInfo {position:static;display:inline;padding:1px 6px;margin-left:3px;}
1026p#uploadWarnings {display:none;text-align:left;margin-bottom:1em;font-size:90%;color:#999;}
1027p#uploadModeInfos {text-align:left;margin-top:1em;font-size:90%;color:#999;}
1028
1029#photosAddContent p.showFieldset {text-align:left;margin: 0 auto 10px auto;width: 650px;}
1030
1031#uploadProgress {width:650px; margin:10px auto;font-size:90%;}
1032#progressbar {border:1px solid #ccc; background-color:#eee;}
1033.ui-progressbar-value { background-image: url(images/pbar-ani.gif); height:10px;margin:-1px;border:1px solid #E78F08;}
1034
1035/* Tag Manager */
1036.warningDeletion {display:none;font-style:italic;}
1037
1038#debug { margin-left: 227px; font-size:12px; }
Note: See TracBrowser for help on using the repository browser.