Skip to content

Commit c00a986

Browse files
author
graeme
committed
images for tree widget
git-svn-id: https://svn.codehaus.org/grails/trunk@821 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent e87566a commit c00a986

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+268
-0
lines changed

src/war/css/tree/check/tree.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
2+
3+
/* first or middle sibling, no children */
4+
.ygtvtn {background: url(../../img/default/tn.gif) 0 0 no-repeat; width:16px; height:22px; }
5+
6+
/* first or middle sibling, collapsable */
7+
.ygtvtm {background: url(../../img/default/tm.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
8+
9+
/* first or middle sibling, collapsable, hover */
10+
.ygtvtmh {background: url(../../img/default/tmh.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
11+
12+
/* first or middle sibling, expandable */
13+
.ygtvtp {background: url(../../img/default/tp.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
14+
15+
/* first or middle sibling, expandable, hover */
16+
.ygtvtph {background: url(../../img/default/tph.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
17+
18+
/* last sibling, no children */
19+
.ygtvln {background: url(../../img/default/ln.gif) 0 0 no-repeat; width:16px; height:22px; }
20+
21+
/* Last sibling, collapsable */
22+
.ygtvlm {background: url(../../img/default/lm.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
23+
24+
/* Last sibling, collapsable, hover */
25+
.ygtvlmh {background: url(../../img/default/lmh.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
26+
27+
/* Last sibling, expandable */
28+
.ygtvlp { background: url(../../img/default/lp.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
29+
30+
/* Last sibling, expandable, hover */
31+
.ygtvlph { background: url(../../img/default/lph.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
32+
33+
/* Loading icon */
34+
.ygtvloading { background: url(../../img/default/loading.gif) 0 0 no-repeat; width:16px; height:22px; }
35+
36+
/* the style for the empty cells that are used for rendering the depth
37+
* of the node */
38+
.ygtvdepthcell { background: url(../../img/default/vline.gif) 0 0 no-repeat; width:16px; height:22px; }
39+
40+
.ygtvblankdepthcell { width:16px; height:22px; }
41+
42+
/* the style of the div around each node */
43+
.ygtvitem { }
44+
45+
/* the style of the div around each node's collection of children */
46+
.ygtvchildren { }
47+
* html .ygtvchildren { height:1%; }
48+
49+
/* the style of the text label in ygTextNode */
50+
.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
51+
margin-left:2px;
52+
text-decoration: none;
53+
}
54+
55+
.ygtvcheck0 { background: url(../../img/check/check0.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
56+
.ygtvcheck1 { background: url(../../img/check/check1.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
57+
.ygtvcheck2 { background: url(../../img/check/check2.gif) 0 0 no-repeat; width:16px; height:22px; cursor:pointer }
58+

src/war/css/tree/default/tree.css

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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(../../img/default/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(../../img/default/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(../../img/default/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(../../img/default/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(../../img/default/tph.gif) 0 0 no-repeat;
35+
}
36+
37+
/* last sibling, no children */
38+
.ygtvln {
39+
width:16px; height:22px;
40+
background: url(../../img/default/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(../../img/default/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(../../img/default/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(../../img/default/lp.gif) 0 0 no-repeat;
62+
}
63+
64+
/* Last sibling, expandable, hover */
65+
.ygtvlph {
66+
width:17px; height:22px; cursor:pointer ;
67+
background: url(../../img/default/lph.gif) 0 0 no-repeat;
68+
}
69+
70+
/* Loading icon */
71+
.ygtvloading {
72+
width:16px; height:22px;
73+
background: url(../../img/default/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(../../img/default/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+

src/war/css/tree/folders/tree.css

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
2+
3+
/* first or middle sibling, no children */
4+
.ygtvtn { background: url(../../img/folders/tn.gif) 0 0 no-repeat; width:17px; height:22px; }
5+
6+
/* first or middle sibling, collapsable */
7+
.ygtvtm { background: url(../../img/folders/tm.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
8+
9+
/* first or middle sibling, collapsable, hover */
10+
.ygtvtmh { background: url(../../img/folders/tmh.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
11+
12+
/* first or middle sibling, expandable */
13+
.ygtvtp { background: url(../../img/folders/tp.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
14+
15+
/* first or middle sibling, expandable, hover */
16+
.ygtvtph { background: url(../../img/folders/tph.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
17+
18+
/* last sibling, no children */
19+
.ygtvln { background: url(../../img/folders/ln.gif) 0 0 no-repeat; width:17px; height:22px; }
20+
21+
/* Last sibling, collapsable */
22+
.ygtvlm { background: url(../../img/folders/lm.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
23+
24+
/* Last sibling, collapsable, hover */
25+
.ygtvlmh { background: url(../../img/folders/lmh.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
26+
27+
/* Last sibling, expandable */
28+
.ygtvlp { background: url(../../img/folders/lp.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
29+
30+
/* Last sibling, expandable, hover */
31+
.ygtvlph { background: url(../../img/folders/lph.gif) 0 0 no-repeat; width:34px; height:22px; cursor:pointer }
32+
33+
/* Loading icon */
34+
.ygtvloading { background: url(../../img/folders/loading.gif) 0 0 no-repeat; width:16px; height:22px; }
35+
36+
/* the style for the empty cells that are used for rendering the depth
37+
* of the node */
38+
.ygtvdepthcell { background: url(../../img/folders/vline.gif) 0 0 no-repeat; width:17px; height:22px; }
39+
40+
.ygtvblankdepthcell { width:17px; height:22px; }
41+
42+
/* the style of the div around each node */
43+
.ygtvitem { }
44+
45+
/* the style of the div around each node's collection of children */
46+
.ygtvchildren { }
47+
* html .ygtvchildren { height:1%; }
48+
49+
/* the style of the text label in ygTextNode */
50+
.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
51+
margin-left:2px;
52+
text-decoration: none;
53+
}
54+
55+

src/war/css/tree/menu/tree.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
2+
3+
/* first or middle sibling, no children */
4+
.ygtvtn { width:1em; height:20px; }
5+
6+
/* first or middle sibling, collapsable */
7+
.ygtvtm { background: url(../../img/menu/collapse.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
8+
9+
/* first or middle sibling, collapsable, hover */
10+
.ygtvtmh { background: url(../../img/menu/collapseh.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
11+
12+
/* first or middle sibling, expandable */
13+
.ygtvtp { background: url(../../img/menu/expand.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
14+
15+
/* first or middle sibling, expandable, hover */
16+
.ygtvtph { background: url(../../img/menu/expandh.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
17+
18+
/* last sibling, no children */
19+
.ygtvln { width:1em; height:20px; }
20+
21+
/* Last sibling, collapsable */
22+
.ygtvlm { background: url(../../img/menu/collapse.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
23+
24+
/* Last sibling, collapsable, hover */
25+
.ygtvlmh { background: url(../../img/menu/collapseh.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
26+
27+
/* Last sibling, expandable */
28+
.ygtvlp { background: url(../../img/menu/expand.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
29+
30+
/* Last sibling, expandable, hover */
31+
.ygtvlph { background: url(../../img/menu/expandh.gif) 0 6px no-repeat; width:1em; height:22px; cursor:pointer }
32+
33+
/* Loading icon */
34+
.ygtvloading { background: url(../../img/menu/loading.gif) 0 6px no-repeat; width:1em; height:22px; }
35+
36+
/* the style for the empty cells that are used for rendering the depth
37+
* of the node */
38+
.ygtvdepthcell { width:1em; height:20px; }
39+
40+
.ygtvblankdepthcell { width:1em; height:20px; }
41+
42+
/* the style of the div around each node */
43+
.ygtvitem { border: 0px solid grey; }
44+
45+
/* the style of the div around each node's collection of children */
46+
.ygtvchildren { }
47+
* html .ygtvchildren { height:1%; }
48+
49+
/* the style of the text label in ygTextNode */
50+
.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
51+
/*
52+
margin-left:2px;
53+
text-decoration: none;
54+
*/
55+
font-size: 12px;
56+
}
57+
58+

src/war/images/tree/bullet.gif

172 Bytes
608 Bytes
609 Bytes
622 Bytes

src/war/images/tree/check/lm.gif

94 Bytes

src/war/images/tree/check/lmh.gif

106 Bytes

0 commit comments

Comments
 (0)