comparison inkscape/firefox/content/themes/classic/style.css @ 352:4350aa369149

Use jQuery UI components.
author wycc
date Mon, 09 Mar 2009 01:27:33 +0800
parents
children
comparison
equal deleted inserted replaced
351:4ae9888bbde6 352:4350aa369149
1 .tree .tree-classic li.open {
2 background-image:url("minus.gif");
3 background-position:2px 5px;
4 background-repeat: no-repeat;
5 }
6 .tree .tree-classic li.closed,
7 .tree .tree-classic #dragged li.open {
8 background-image:url("plus.gif");
9 background-position:2px 5px;
10 background-repeat: no-repeat;
11 }
12
13 .tree .tree-classic li a,
14 .tree .tree-classic li span {
15 border-radius:0px;
16 -moz-border-radius:0px;
17 -webkit-border-radius:0px;
18 }
19
20 .tree .tree-classic li.open a {
21 background-image:url("folderopen.gif");
22 }
23 .tree .tree-classic li.closed a {
24 background-image:url("folder.gif");
25 }
26 .tree .tree-classic li.leaf a {
27 background-image:url("folder.gif");
28 }
29
30 .tree .tree-classic li a:hover {
31 background-color:white;
32 border-color:white;
33 }
34 .tree .tree-classic li a.clicked,
35 .tree .tree-classic li span.clicked {
36 background-color:navy;
37 border-color:navy;
38 color:white;
39 }
40
41 .rtl .tree-classic li.open {
42 background-position:right 5px;
43 margin-right:-3px;
44 padding-right:19px;
45 }
46 .rtl .tree-classic li.closed {
47 background-position:right 5px;
48 margin-right:-3px;
49 padding-right:19px;
50 }
51 .rtl .tree-classic #dragged li.open {
52 background-position: right 5px;
53 }