-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtreejs.css
64 lines (51 loc) · 1.18 KB
/
treejs.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.tj_container *{
position: relative;
box-sizing: border-box;
}
.tj_container ul{
padding-left: 2em;
list-style-type: none;
}
.tj_container > ul:first-of-type{
padding: 0;
}
.tj_container li span.tj_description{
cursor: pointer;
padding: 2px 5px;
display: block;
border-radius: 2px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: left;
}
.tj_container li span.tj_description:hover{
background-color: #ccc;
}
.tj_container li span.tj_mod_icon, .tj_container li span.tj_icon{
margin-right: 0.5em;
display: inline-block;
}
.tj_container li span.tj_mod_icon, .tj_container li span.tj_mod_icon *{
width: 1em;
}
.tj_container li span.tj_description.tj_leaf{
margin-left: 1.5em;
}
.tj_container li[disabled=""]{
color: #b5b5b5;
}
.tj_container li[disabled=""]:hover span.tj_description{
cursor: default;
background-color: inherit;
}
.tj_container span.tj_description.selected{
background-color: #2b2b2b;
color: #fff;
}
.tj_container span.tj_description.selected:hover{
background-color: #606060;
}