source: trunk/templates/grouptree-ie.css@ 543

Last change on this file since 543 was 100, checked in by Kris Deugau, 13 years ago

/trunk/templates

Templates

UI tweaks - make sure all main-body content is valign=top

dns.css

tweak comment style so IE ignores a line properly
fix typo, set valign=top on #datatablewrapper
add a couple more classes

grouptree-ie.css

tweak padding to indent group tree properly, comment a few more (apparently)
irrelevant bits

File size: 1.4 KB
Line 
1/*
2 CSS for group tree, IE-specific non-collapsing version
3*/
4ul.grptree {
5/* padding-left: 0px; /* hack pthui */
6 padding-left: 15px; /* hack pthui */
7}
8li.hassub {
9 position: relative;
10 margin: 0 0 0 0px;
11 padding: 0;
12 list-style: none;
13 background: url('../images/tree_open.png') 0px 0px no-repeat; /* hack pthui */
14}
15li.leaf {
16 margin: 0;
17 padding: 0 0 0 15px; /* in px since this is to adjust for a fixed-size image */
18 list-style: none;
19}
20li.hassub input {
21 position: absolute;
22 left: 0;
23 margin: 0;
24 opacity: 0;
25 filter:alpha(opacity=0); /* IE > 6, maybe */
26 z-index: 2;
27 height: 1em;
28 width: 1em;
29 top: 0;
30}
31input.grptreebox {
32 height: 0;
33 -khtml-opacity: 0;
34}
35/*li.hassub input + ul {
36/* background: url('../images/tree_closed.png') 0px -2px no-repeat;*/
37/* margin-top: -0.95em; /* esplain to me, why this not 1em? O_o */
38/* padding-top: 0.1em;*/
39/* padding-left: 2.25em; /* ah-HA! use this to adjust the indent! watch for neg margin from li.hassub */
40/* xdisplay: block;
41/* height: 1em;*/
42/*}
43/*li.hassub input + ul > li {
44/* height: 0;
45/* overflow: hidden;
46/* margin-left: -14px !important;
47/*}*/
48li.hassub label {
49 display: block;
50 padding-left: 15px; /* in px as it ajusts for fixed-size image */
51}
52/*li.hassub input:checked + ul {
53/* background: url('../images/tree_open.png') 0px 0px no-repeat;
54/* margin-top: -1.2em;
55/* padding-top: 1.1em;
56/* height: auto;*/
57/*}*/
58/*li.hassub input:checked + ul > li {
59/* height: auto;
60/*}*/
Note: See TracBrowser for help on using the repository browser.