This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
treeStyle.css
65 lines (65 loc) · 1.45 KB
/
treeStyle.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
65
.tree-panel{
width: 500px;
height: auto;
overflow: hidden;
box-shadow: 0 0 10px -2px rgba(0,0,0,0.2);
color: #000;
padding: 20px;
border-radius: 10px;
border: solid 1px #ddd;
}
.tree-panel .tree-panel-heading {
padding: 5px;
border-bottom: solid 1px #DFDFDF;
}
.tree-panel .tree-panel-heading .btn {
font-size: 13px;
}
.tree-panel #home-tree {
list-style: none;
padding: 0;
margin: 0;
height: auto;
overflow: hidden;
}
.tree-panel .tree {
list-style: none;
padding-left: 17px;
}
.tree-panel .tree li {
width: 100%;
float: left;
}
.tree-panel .tree .tree-folder .tree-folder-name {
padding: 2px 5px;
display: block;
float: left;
-webkit-border-radius: 4px;
border-radius: 4px;
box-sizing: border-box;
overflow: hidden;
}
.tree-panel .tree .tree-folder .tree-folder-name.checked {
background-color: #00AFF0;
color: #fff;
}
.tree-panel .tree .tree-folder .tree-folder-name.checked:hover {
background-color: #00AFD3;
}
.tree-panel .tree .tree-folder .tree-folder-name:hover {
background-color: #eee;
cursor: pointer;
}
.tree-panel .tree .tree-folder .tree-folder-name input {
vertical-align: baseline;
margin-right: 4px;
line-height: normal;
}
.tree-panel .tree .tree-folder .tree-folder-name i {
font-size: 13px;
}
.tree-panel .tree .tree-folder .tree-folder-name label {
font-weight: 400;
font-size: 12px;
font-family: sans-serif;
}