1 | /* $Id: thumbnails.css 2526 2008-09-14 00:33:53Z vdigital $ */ |
---|
2 | .content UL.thumbnails { |
---|
3 | margin: 0; padding: 0; list-style: none; |
---|
4 | text-align: center; /* to center the whole collection in .content */ |
---|
5 | } |
---|
6 | .content UL.thumbnails LI { display: inline } |
---|
7 | .content UL.thumbnails SPAN.wrap1 { |
---|
8 | margin: 0 5px 5px 5px; |
---|
9 | display: table-cell; display: inline-table; |
---|
10 | display: inline-block; /* Why 3 display option ??? */ |
---|
11 | vertical-align: top; /* OK with Opera and IE6 not Geko */ |
---|
12 | text-align: center; /* to center the thumbnail and legend in Geko/Opera */ |
---|
13 | } |
---|
14 | .content UL.thumbnails SPAN.wrap2 { |
---|
15 | margin: 0; /* important reset the margins */ |
---|
16 | display: table-cell; /* block prevents vertical-align here */ |
---|
17 | vertical-align: middle; /* Ok with Opera and Geko not IE6 */ |
---|
18 | } |
---|
19 | .content UL.thumbnails LABEL { display: block; border-bottom: none; } |
---|
20 | .content UL.thumbnails IMG { |
---|
21 | margin-bottom: -4px; /* why ??? something wrong with Geko and Opera ignored by IE6*/ |
---|
22 | } |
---|
23 | .content UL.thumbnails LABEL { position: relative; } |
---|
24 | .content UL.thumbnails INPUT { |
---|
25 | position: relative; /* <= Opera can handle relative here */ |
---|
26 | top: -20px; |
---|
27 | } |
---|
28 | :root .content UL.thumbnails INPUT { /* hide from Opera */ |
---|
29 | position: absolute; /* <= Opera hide 1 checkbox over 2 !!! */ |
---|
30 | left: 2px; top: 2px; |
---|
31 | } |
---|
32 | UL.thumbnails .levelIndicatorB { |
---|
33 | display:block; position:absolute; z-index:100;padding:0px 0 0 14px; color:black; font-weight:bold; font-size:120%; |
---|
34 | } |
---|
35 | UL.thumbnails .levelIndicatorF { |
---|
36 | display:block; position:absolute; z-index:101;padding:1px 0 0 15px; color:white; font-weight:bold; font-size:120%; |
---|
37 | } |
---|