summaryrefslogtreecommitdiff
path: root/frontend/beta/css/yui/tree.css
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
commitef68436ac04da078ffdcacd7e1f785473a303d45 (patch) (unidiff)
treec403752d66a2c4775f00affd4fa8431b29c5b68c /frontend/beta/css/yui/tree.css
parent597ecfbc0249d83e1b856cbd558340c01237a360 (diff)
downloadclipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.zip
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.gz
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.bz2
First version of the newly restructured repository
Diffstat (limited to 'frontend/beta/css/yui/tree.css') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/css/yui/tree.css132
1 files changed, 132 insertions, 0 deletions
diff --git a/frontend/beta/css/yui/tree.css b/frontend/beta/css/yui/tree.css
new file mode 100644
index 0000000..8f537ac
--- a/dev/null
+++ b/frontend/beta/css/yui/tree.css
@@ -0,0 +1,132 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29/*
30Copyright (c) 2006, Yahoo! Inc. All rights reserved.
31Code licensed under the BSD License:
32http://developer.yahoo.com/yui/license.txt
33Version: 0.11.3
34*/
35
36/* first or middle sibling, no children */
37.ygtvtn {
38 width:16px; height:22px;
39 background: url(../../images/yui/treeview/tn.gif) 0 0 no-repeat;
40}
41
42/* first or middle sibling, collapsable */
43.ygtvtm {
44 width:16px; height:22px;
45 cursor:pointer ;
46 background: url(../../images/yui/treeview/tm.gif) 0 0 no-repeat;
47}
48
49/* first or middle sibling, collapsable, hover */
50.ygtvtmh {
51 width:16px; height:22px;
52 cursor:pointer ;
53 background: url(../../images/yui/treeview/tmh.gif) 0 0 no-repeat;
54}
55
56/* first or middle sibling, expandable */
57.ygtvtp {
58 width:16px; height:22px;
59 cursor:pointer ;
60 background: url(../../images/yui/treeview/tp.gif) 0 0 no-repeat;
61}
62
63/* first or middle sibling, expandable, hover */
64.ygtvtph {
65 width:16px; height:22px;
66 cursor:pointer ;
67 background: url(../../images/yui/treeview/tph.gif) 0 0 no-repeat;
68}
69
70/* last sibling, no children */
71.ygtvln {
72 width:16px; height:22px;
73 background: url(../../images/yui/treeview/ln.gif) 0 0 no-repeat;
74}
75
76/* Last sibling, collapsable */
77.ygtvlm {
78 width:16px; height:22px;
79 cursor:pointer ;
80 background: url(../../images/yui/treeview/lm.gif) 0 0 no-repeat;
81}
82
83/* Last sibling, collapsable, hover */
84.ygtvlmh {
85 width:16px; height:22px;
86 cursor:pointer ;
87 background: url(../../images/yui/treeview/lmh.gif) 0 0 no-repeat;
88}
89
90/* Last sibling, expandable */
91.ygtvlp {
92 width:16px; height:22px;
93 cursor:pointer ;
94 background: url(../../images/yui/treeview/lp.gif) 0 0 no-repeat;
95}
96
97/* Last sibling, expandable, hover */
98.ygtvlph {
99 width:16px; height:22px; cursor:pointer ;
100 background: url(../../images/yui/treeview/lph.gif) 0 0 no-repeat;
101}
102
103/* Loading icon */
104.ygtvloading {
105 width:16px; height:22px;
106 background: url(../../images/yui/treeview/loading.gif) 0 0 no-repeat;
107}
108
109/* the style for the empty cells that are used for rendering the depth
110 * of the node */
111.ygtvdepthcell {
112 width:16px; height:22px;
113 background: url(../../images/yui/treeview/vline.gif) 0 0 no-repeat;
114}
115
116.ygtvblankdepthcell { width:16px; height:22px; }
117
118/* the style of the div around each node */
119.ygtvitem { }
120
121/* the style of the div around each node's collection of children */
122.ygtvchildren { }
123* html .ygtvchildren { height:2%; }
124
125/* the style of the text label in ygTextNode */
126.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
127 margin-left:2px;
128 text-decoration: none;
129}
130
131.ygtvspacer { height: 10px; width: 10px; margin: 2px; }
132