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

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

complement to r3282, remove all $Id$ in source code.

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