1 | /*
|
---|
2 | This file is part of the DITA Open Toolkit project hosted on
|
---|
3 | Sourceforge.net. See the accompanying license.txt file for
|
---|
4 | applicable licenses.
|
---|
5 |
|
---|
6 |
|
---|
7 | Copyright (c) 2006, Yahoo! Inc. All rights reserved.
|
---|
8 | Code licensed under the BSD License:
|
---|
9 | http://developer.yahoo.net/yui/license.txt
|
---|
10 | version: 0.10.0
|
---|
11 | */
|
---|
12 |
|
---|
13 | /* first or middle sibling, no children */
|
---|
14 | .ygtvtn { background: url(../../img/folders/tn.gif) 0 0 no-repeat; width:17px; height:22px; }
|
---|
15 |
|
---|
16 | /* first or middle sibling, collapsable */
|
---|
17 | .ygtvtm { background: url(../../img/folders/tm.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
18 |
|
---|
19 | /* first or middle sibling, collapsable, hover */
|
---|
20 | .ygtvtmh { background: url(../../img/folders/tmh.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
21 |
|
---|
22 | /* first or middle sibling, expandable */
|
---|
23 | .ygtvtp { background: url(../../img/folders/tp.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
24 |
|
---|
25 | /* first or middle sibling, expandable, hover */
|
---|
26 | .ygtvtph { background: url(../../img/folders/tph.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
27 |
|
---|
28 | /* last sibling, no children */
|
---|
29 | .ygtvln { background: url(../../img/folders/ln.gif) 0 0 no-repeat; width:17px; height:22px; }
|
---|
30 |
|
---|
31 | /* Last sibling, collapsable */
|
---|
32 | .ygtvlm { background: url(../../img/folders/lm.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
33 |
|
---|
34 | /* Last sibling, collapsable, hover */
|
---|
35 | .ygtvlmh { background: url(../../img/folders/lmh.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
36 |
|
---|
37 | /* Last sibling, expandable */
|
---|
38 | .ygtvlp { background: url(../../img/folders/lp.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
39 |
|
---|
40 | /* Last sibling, expandable, hover */
|
---|
41 | .ygtvlph { background: url(../../img/folders/lph.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
|
---|
42 |
|
---|
43 | /* Loading icon */
|
---|
44 | .ygtvloading { background: url(../../img/folders/loading.gif) 0 0 no-repeat; width:16px; height:22px; }
|
---|
45 |
|
---|
46 | /* the style for the empty cells that are used for rendering the depth
|
---|
47 | * of the node */
|
---|
48 | .ygtvdepthcell { background: url(../../img/folders/vline.gif) 0 0 no-repeat; width:17px; height:22px; }
|
---|
49 |
|
---|
50 | .ygtvblankdepthcell { width:17px; height:22px; }
|
---|
51 |
|
---|
52 | /* the style of the div around each node */
|
---|
53 | .ygtvitem { }
|
---|
54 |
|
---|
55 | /* the style of the div around each node's collection of children */
|
---|
56 | .ygtvchildren { }
|
---|
57 | * html .ygtvchildren { height:1%; }
|
---|
58 |
|
---|
59 | /* the style of the text label in ygTextNode */
|
---|
60 | .ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
|
---|
61 | margin-left:2px;
|
---|
62 | text-decoration: none;
|
---|
63 | }
|
---|
64 |
|
---|
65 |
|
---|