source: branches/dev/html/test/kakinaka/js/treeview/assets/tree.css @ 8

Revision 8, 2.2 KB checked in by root, 17 years ago (diff)

new import

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