-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFileList.css
More file actions
57 lines (48 loc) · 776 Bytes
/
FileList.css
File metadata and controls
57 lines (48 loc) · 776 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
.expander>input {
display: none;
}
.expander>span {
display: inline-block;
width: 0;
height: 0;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 8px solid #6e6e6e;
cursor: pointer;
}
.expander>input:checked~span {
transform: rotate(90deg);
}
.header {
display: flex;
}
.header .expander {
flex: 0 0 10px;
}
.header .checker {
flex: 0 0 18px;
margin: 5px 0;
}
.header .icon {
flex: 0 0 18px;
background-repeat: no-repeat;
background-size: 18px;
margin-right: 5px;
}
.header .node-name {
word-wrap: break-word;
word-break: break-all;
}
.header .children {
margin-left: 5px;
font-size: 12px;
color: #777;
}
.children-list {
list-style: none;
padding-left: 20px;
margin: 0;
}
.no-indent {
padding-left: 0;
}