source: trunk/admin/template/goto/thumbnails.css @ 3282

Last change on this file since 3282 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 2.0 KB
Line 
1/* $Id: /piwigo/trunk/admin/template/goto/thumbnails.css 7049 2009-03-17T16:48:04.081028Z nikrou  $ */
2.content UL.thumbnails {
3  margin: 0; padding: 0; list-style: none;
4  text-align: center;   /* to center the whole collection in .content */
5  float: left;
6}
7.content UL.thumbnails LI { display: inline }
8.content ul.thumbnails li.rank-of-image { 
9  float: left;
10  background-color: #111;
11  border: 1px solid #666;
12  color: #666;
13  -moz-border-radius: 4px;
14  display: block;
15  width: 104px;
16  height: 128px;
17  cursor: move;
18  margin: 10px;
19}
20.content ul.thumbnails li.rank-of-image img {
21  width: 96px;
22  height: 96px;
23  margin: 4px;
24  float: left;
25}
26.content ul.thumbnails li.rank-of-image input {
27  height: 12px; 
28  width: 50px;
29  position: relative;
30  top: 0; 
31}
32.content UL.thumbnails SPAN.wrap1 {
33  margin: 0 5px 5px 5px;
34  display: table-cell; display: inline-table;
35  display: inline-block; /* Why 3 display option ??? */
36  vertical-align: top;          /* OK with Opera and IE6 not Geko */
37  text-align: center;           /* to center the thumbnail and legend in Geko/Opera */
38}
39.content UL.thumbnails SPAN.wrap2 {
40  margin: 0;                    /* important reset the margins */
41  display: table-cell;          /* block prevents vertical-align here */
42  vertical-align: middle;       /* Ok with Opera and Geko not IE6 */
43}
44.content UL.thumbnails LABEL { display: block; border-bottom: none; }
45.content UL.thumbnails IMG {
46  margin-bottom: -4px;  /* why ??? something wrong with Geko and Opera ignored by IE6*/
47}
48.content UL.thumbnails LABEL { position: relative; }
49.content UL.thumbnails INPUT {
50  position: relative;   /* <= Opera can handle relative here */
51  top: -20px;
52}
53:root .content UL.thumbnails INPUT { /* hide from Opera */
54  position: absolute;   /* <= Opera hide 1 checkbox over 2 !!! */
55  left: 2px; top: 2px;
56}
57UL.thumbnails .levelIndicatorB {
58display:block; position:absolute; z-index:100;padding:0px 0 0 14px; color:black; font-weight:bold; font-size:120%;
59}
60UL.thumbnails .levelIndicatorF {
61display:block; position:absolute; z-index:101;padding:1px 0 0 15px; color:white; font-weight:bold; font-size:120%;
62}
Note: See TracBrowser for help on using the repository browser.