easyTree.css
2.4 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/** Easy Tree style */
.easy-tree {
/*min-height: 20px;
margin-bottom: 20px;
/* background-color: #333;*/
color: #fff;
border: none;
border-top: none;
padding-bottom: 15px;
margin-bottom: 20px;
}
.easy-tree > ul {
padding-left: 7px;
}
.easy-tree li {
list-style-type: none;
margin: 0;
padding: 2px 2px 0;
position: relative
}
.easy-tree li::before, .easy-tree li::after {
content: '';
left: -32px;
position: absolute;
right: auto
}
.easy-tree li::before {
/*border-left: 1px solid #fff;*/
bottom: 50px;
height: 100%;
top: -6px;
width: 1px
}
.easy-tree li::after {
/* border-top: 1px solid #fff;*/
height: 20px;
top: 23px;
width: 35px
}
.easy-tree li > span {
/*border: 1px solid #fff;*/
border-radius: 3px;
display: inline-block;
padding: 2px;
text-decoration: none
}
.easy-tree li.parent_li > span {
cursor: pointer
}
.easy-tree > ul > li::before, .easy-tree > ul > li::after {
border: 0
}
.easy-tree li:last-child::before {
height: 30px
}
.easy-tree li.parent_li > span:hover, .easy-tree li.parent_li > span:hover + ul li span {
background: #1B92D0;
color: #fff;
}
.easy-tree li.parent_li > span:hover + ul li.li_selected span {
background: #e5e2e1;
color: #e56155;
}
.easy-tree li > span > a {
color: #fff;
text-decoration: none;
font-size:11px;
padding-left:5px;
}
.easy-tree li > span > span.glyphicon-folder-close, .easy-tree li > span > span.glyphicon-folder-open {
margin-right: 5px;
}
.easy-tree li.li_selected > span, .easy-tree li.li_selected > span > a {
background: #e5e2e1;
color: #e56155;
}
.easy-tree li.li_selected > span:hover, .easy-tree li.li_selected > span:hover > a {
background: #fafafa;
color: #ff6c60;
}
.easy-tree .easy-tree-toolbar {
background-color: #fff;
}
.easy-tree .easy-tree-toolbar > div {
display: inline-block;
}
.easy-tree .easy-tree-toolbar > div > button {
border-radius: 0;
margin: 20px 5px;
}
.easy-tree .easy-tree-toolbar .create .input-group {
top: -15px;
margin-left: 5px;
margin-right: 5px;
}
.easy-tree .easy-tree-toolbar .create .input-group input {
border-radius: 0;
}
.easy-tree .easy-tree-toolbar .create .input-group button {
border-radius: 0;
}