352
|
1 /* DOTS */
|
|
2 .tree .tree-default,
|
|
3 .tree .tree-default ul {
|
|
4 background-image:url("dot.gif");
|
|
5 }
|
|
6 .tree .tree-default li {
|
|
7 background-image:url("li.gif");
|
|
8 }
|
|
9 .tree .tree-default li.last {
|
|
10 background-image:url("lastli.gif");
|
|
11 }
|
|
12
|
|
13 /* OPEN or CLOSED */
|
|
14 .tree .tree-default li.open {
|
|
15 background:url("fminus.gif") 4px 6px no-repeat;
|
|
16 }
|
|
17
|
|
18 .tree .tree-default li.closed {
|
|
19 background:url("fplus.gif") 5px 5px no-repeat;
|
|
20 }
|
|
21
|
|
22 .tree .tree-default #dragged li.open {
|
|
23 background:url("fplus.gif") 5px 5px no-repeat;
|
|
24 }
|
|
25
|
|
26 /* RIGHT TO LEFT SUPPORT */
|
|
27 .rtl .tree-default li {
|
|
28 margin-right:1px;
|
|
29 }
|
|
30 .rtl .tree-default li.last {
|
|
31 background-image:url("lastli_rtl.gif");
|
|
32 margin-right:0;
|
|
33 padding-right:16px;
|
|
34 }
|
|
35 .rtl .tree-default li.open {
|
|
36 background:url("fminus_rtl.gif") right 6px no-repeat;
|
|
37 margin-right:0;
|
|
38 padding-right:16px;
|
|
39 }
|
|
40 .rtl .tree-default li.closed {
|
|
41 background:url("fplus_rtl.gif") right 4px no-repeat;
|
|
42 margin-right:0;
|
|
43 padding-right:16px;
|
|
44 }
|
|
45 .rtl .tree-default #dragged li.open {
|
|
46 background-position: right 5px;
|
|
47 }
|
|
48
|
|
49 /* DEFAULT ICON */
|
|
50 .tree .tree-default li a,
|
|
51 .tree .tree-default li span {
|
|
52 background-image:url("f.png");
|
|
53 border-radius:3px;
|
|
54 -moz-border-radius:3px;
|
|
55 -webkit-border-radius:3px;
|
|
56 }
|
|
57
|
|
58 .tree .tree-default li a.loading {
|
|
59 background-image:url("throbber.gif");
|
|
60 }
|
|
61
|
|
62 /* CONTEXT MENU */
|
|
63 .tree .tree-default .context {
|
|
64 width:160px;
|
|
65 background:#F0F0F0 url("context.gif") 22px 0 repeat-y;
|
|
66 border:1px solid silver;
|
|
67 }
|
|
68
|
|
69 .tree .tree-default .context a,
|
|
70 .tree .tree-default .context a.disabled:hover {
|
|
71 text-decoration:none;
|
|
72 color:black;
|
|
73 text-indent:26px;
|
|
74 line-height:20px;
|
|
75 background-repeat: no-repeat;
|
|
76 background-position: 3px center;
|
|
77 padding:1px 0;
|
|
78 background-color:transparent;
|
|
79 border:0;
|
|
80 }
|
|
81 .tree .tree-default .context a:hover {
|
|
82 background-color: #e7f4f9;
|
|
83 border:1px solid #d8f0fa;
|
|
84 background-position: 2px center;
|
|
85 padding:0;
|
|
86 text-indent:25px;
|
|
87 }
|
|
88 .tree .tree-default .context a.disabled,
|
|
89 .tree .tree-default .context a.disabled:hover {
|
|
90 color:silver;
|
|
91 opacity:0.5;
|
|
92 -ms-filter:'alpha(opacity=50)';
|
|
93 filter:alpha(opacity=50);
|
|
94 zoom:1;
|
|
95 }
|
|
96
|
|
97 .tree .tree-default .context .separator {
|
|
98 background:#FFFFFF;;
|
|
99 border-top:1px solid #E0E0E0;
|
|
100 font-size:1px;
|
|
101 height:1px;
|
|
102 line-height:1px;
|
|
103 margin:0 2px 0 24px;
|
|
104 min-height:1px;
|
|
105 display:block;
|
|
106 }
|