Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / lib / yui / treeview / assets / skins / sam / treeview-skin.css
blobc2007c6ae92aebc618e4610f2a7317f3cf584c30
1 /*
2 Copyright (c) 2008, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.net/yui/license.txt
5 version: 2.5.2
6 */
8 /* the style of the div around each node */
9 .ygtvitem { }
11 .ygtvitem table {
12 margin-bottom:0; border:none;
15 .ygtvitem td {
16 border: none; padding: 0;
19 /* first or middle sibling, no children */
20 .ygtvtn {
21 width:18px; height:22px;
22 background: url(treeview-sprite.gif) 0 -5600px no-repeat;
25 /* first or middle sibling, collapsable */
26 .ygtvtm {
27 width:18px; height:22px;
28 cursor:pointer ;
29 background: url(treeview-sprite.gif) 0 -4000px no-repeat;
32 /* first or middle sibling, collapsable, hover */
33 .ygtvtmh {
34 width:18px; height:22px;
35 cursor:pointer ;
36 background: url(treeview-sprite.gif) 0 -4800px no-repeat;
39 /* first or middle sibling, expandable */
40 .ygtvtp {
41 width:18px; height:22px;
42 cursor:pointer ;
43 background: url(treeview-sprite.gif) 0 -6400px no-repeat;
46 /* first or middle sibling, expandable, hover */
47 .ygtvtph {
48 width:18px; height:22px;
49 cursor:pointer ;
50 background: url(treeview-sprite.gif) 0 -7200px no-repeat;
53 /* last sibling, no children */
54 .ygtvln {
55 width:18px; height:22px;
56 background: url(treeview-sprite.gif) 0 -1600px no-repeat;
59 /* Last sibling, collapsable */
60 .ygtvlm {
61 width:18px; height:22px;
62 cursor:pointer ;
63 background: url(treeview-sprite.gif) 0 0px no-repeat;
66 /* Last sibling, collapsable, hover */
67 .ygtvlmh {
68 width:18px; height:22px;
69 cursor:pointer ;
70 background: url(treeview-sprite.gif) 0 -800px no-repeat;
73 /* Last sibling, expandable */
74 .ygtvlp {
75 width:18px; height:22px;
76 cursor:pointer ;
77 background: url(treeview-sprite.gif) 0 -2400px no-repeat;
80 /* Last sibling, expandable, hover */
81 .ygtvlph {
82 width:18px; height:22px; cursor:pointer ;
83 background: url(treeview-sprite.gif) 0 -3200px no-repeat;
86 /* Loading icon */
87 .ygtvloading {
88 width:18px; height:22px;
89 background: url(treeview-loading.gif) 0 0 no-repeat;
92 /* the style for the empty cells that are used for rendering the depth
93 * of the node */
94 .ygtvdepthcell {
95 width:18px; height:22px;
96 background: url(treeview-sprite.gif) 0 -8000px no-repeat;
99 .ygtvblankdepthcell { width:18px; height:22px; }
102 /* the style of the div around each node's collection of children */
103 .ygtvchildren { }
104 * html .ygtvchildren { height:2%; }
106 /* the style of the text label in ygTextNode */
107 .ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
108 margin-left:2px;
109 text-decoration: none;
110 background-color: white; /* workaround for IE font smoothing bug */
113 .ygtvspacer { height: 22px; width: 12px; }