Line | |
---|
1 | div[data-angular-treeview] { |
---|
2 | /* prevent user selection */ |
---|
3 | -moz-user-select: -moz-none; |
---|
4 | -khtml-user-select: none; |
---|
5 | -webkit-user-select: none; |
---|
6 | -ms-user-select: none; |
---|
7 | user-select: none; |
---|
8 | |
---|
9 | /* default */ |
---|
10 | font-family: Tahoma; |
---|
11 | font-size:13px; |
---|
12 | color: #555; |
---|
13 | text-decoration: none; |
---|
14 | } |
---|
15 | |
---|
16 | div[data-tree-model] ul { |
---|
17 | margin: 0; |
---|
18 | padding: 0; |
---|
19 | list-style: none; |
---|
20 | border: none; |
---|
21 | overflow: hidden; |
---|
22 | } |
---|
23 | |
---|
24 | div[data-tree-model] li { |
---|
25 | position: relative; |
---|
26 | padding: 0 0 0 20px; |
---|
27 | line-height: 20px; |
---|
28 | } |
---|
29 | |
---|
30 | div[data-tree-model] li .expanded { |
---|
31 | padding: 1px 10px; |
---|
32 | background-image: url("../img/folder.png"); |
---|
33 | background-repeat: no-repeat; |
---|
34 | } |
---|
35 | |
---|
36 | div[data-tree-model] li .collapsed { |
---|
37 | padding: 1px 10px; |
---|
38 | background-image: url("../img/folder-closed.png"); |
---|
39 | background-repeat: no-repeat; |
---|
40 | } |
---|
41 | |
---|
42 | div[data-tree-model] li .normal { |
---|
43 | padding: 1px 10px; |
---|
44 | background-image: url("../img/file.png"); |
---|
45 | background-repeat: no-repeat; |
---|
46 | } |
---|
47 | |
---|
48 | div[data-tree-model] li i, div[data-tree-model] li span { |
---|
49 | cursor: pointer; |
---|
50 | } |
---|
51 | |
---|
52 | div[data-tree-model] li .selected { |
---|
53 | background-color: #aaddff; |
---|
54 | font-weight: bold; |
---|
55 | padding: 1px 5px; |
---|
56 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.