-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (59 loc) · 984 Bytes
/
Copy pathstyles.css
File metadata and controls
70 lines (59 loc) · 984 Bytes
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
.tree li {
list-style-type: none;
margin: 0;
padding: 10px 5px 0 5px;
position: relative;
}
.tree li ul {
display: none;
}
.tree li .show {
display: block;
}
.tree li:before, .tree li:after {
content: '';
left: -20px;
position: absolute;
right: auto;
}
.tree li:before {
border-left: 1px solid #999;
bottom: 50px;
height: 100%;
top: 0;
width: 1px;
}
.tree li:after {
border-top: 1px solid #999;
height: 20px;
top: 20px;
width: 30px;
}
.tree li:last-child:before {
height: 20px !important;
}
.tree li span {
display: inline-block;
padding: 3px 8px;
text-decoration: none;
user-select: none;
font-family: 'Font Awesome 5 Free';
font-size: 14px;
}
.tree li .plus::before {
font-weight: 600;
content: '\f0fe';
padding-right: 5px;
}
.tree li .minus::before {
font-weight: 600;
font-size: 16px;
content: '\f146';
padding-right: 5px;
}
.tree > ul > li::before, .tree > ul > li::after {
border: 0;
}
.tree li:last-child::before {
height: 30px;
}