blob: c488e2894e9e0f519c0cd2a744859a49a1c2d075 (
plain)
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
|
ul {
list-style: none;
}
li {
margin: 5px 0;
}
.no-indent {
padding-left: 0;
}
/* ALL THESE SPACINGS ARE SUPER HACKY RIGHT NOW HANNAH PLS HELP */
li:before {
content: '\2014';
margin-right: 0.7em;
}
.collapsed:before {
content: '\25b6';
margin-right: 0.65em;
}
.uncollapsed:before {
content: '\25bc';
margin-right: 0.5em;
}
.collectionTreeView-dropTarget {
border-style: solid;
box-sizing: border-box;
height:100%;
}
|