source: branches/rel/html/test/kakinaka/css/default/tree.css @ 12157

Revision 12157, 2.6 KB checked in by uehara, 17 years ago (diff)
Line 
1/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
2
3/* first or middle sibling, no children */
4.ygtvtn {
5    width:16px; height:22px;
6    background: url(../../../../../../../i/us/nt/widg/tree/dflt/tn.gif) 0 0 no-repeat;
7}
8
9/* first or middle sibling, collapsable */
10.ygtvtm {
11    width:16px; height:22px;
12    cursor:pointer ;
13    background: url(../../../../../../../i/us/nt/widg/tree/dflt/tm.gif) 0 0 no-repeat;
14}
15
16/* first or middle sibling, collapsable, hover */
17.ygtvtmh {
18    width:16px; height:22px;
19    cursor:pointer ;
20    background: url(../../../../../../../i/us/nt/widg/tree/dflt/tmh.gif) 0 0 no-repeat;
21}
22
23/* first or middle sibling, expandable */
24.ygtvtp {
25    width:16px; height:22px;
26    cursor:pointer ;
27    background: url(../../../../../../../i/us/nt/widg/tree/dflt/tp.gif) 0 0 no-repeat;
28}
29
30/* first or middle sibling, expandable, hover */
31.ygtvtph {
32    width:16px; height:22px;
33    cursor:pointer ;
34    background: url(../../../../../../../i/us/nt/widg/tree/dflt/tph.gif) 0 0 no-repeat;
35}
36
37/* last sibling, no children */
38.ygtvln {
39    width:16px; height:22px;
40    background: url(../../../../../../../i/us/nt/widg/tree/dflt/ln.gif) 0 0 no-repeat;
41}
42
43/* Last sibling, collapsable */
44.ygtvlm {
45    width:16px; height:22px;
46    cursor:pointer ;
47    background: url(../../../../../../../i/us/nt/widg/tree/dflt/lm.gif) 0 0 no-repeat;
48}
49
50/* Last sibling, collapsable, hover */
51.ygtvlmh {
52    width:16px; height:22px;
53    cursor:pointer ;
54    background: url(../../../../../../../i/us/nt/widg/tree/dflt/lmh.gif) 0 0 no-repeat;
55}
56
57/* Last sibling, expandable */
58.ygtvlp {
59    width:16px; height:22px;
60    cursor:pointer ;
61    background: url(../../../../../../../i/us/nt/widg/tree/dflt/lp.gif) 0 0 no-repeat;
62}
63
64/* Last sibling, expandable, hover */
65.ygtvlph {
66    width:16px; height:22px; cursor:pointer ;
67    background: url(../../../../../../../i/us/nt/widg/tree/dflt/lph.gif) 0 0 no-repeat;
68}
69
70/* Loading icon */
71.ygtvloading {
72    width:16px; height:22px;
73    background: url(../../../../../../../i/us/nt/widg/tree/dflt/loading.gif) 0 0 no-repeat;
74}
75
76/* the style for the empty cells that are used for rendering the depth
77 * of the node */
78.ygtvdepthcell {
79    width:16px; height:22px;
80    background: url(../../../../../../../i/us/nt/widg/tree/dflt/vline.gif) 0 0 no-repeat;
81}
82
83.ygtvblankdepthcell { width:16px; height:22px; }
84
85/* the style of the div around each node */
86.ygtvitem { } 
87
88/* the style of the div around each node's collection of children */
89.ygtvchildren { } 
90* html .ygtvchildren { height:2%; } 
91
92/* the style of the text label in ygTextNode */
93.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
94    margin-left:2px;
95    text-decoration: none;
96}
97
98.ygtvspacer { height: 10px; width: 10px; margin: 2px; }
Note: See TracBrowser for help on using the repository browser.