blob: 4b28ded457c14152f3d9dc10c83606596c699592 (
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
35
36
37
38
39
40
|
@import "../global_variables";
#body {
padding: 20px;
background: $light-color-secondary;
}
ul {
list-style: none;
}
li {
margin: 5px 0;
}
.no-indent {
padding-left: 0;
}
.bullet {
width: 1.5em;
display: inline-block;
}
.collectionTreeView-dropTarget {
border: 0px solid $intermediate-color;
border-radius: $border-radius;
box-sizing: border-box;
height: 100%;
}
.docContainer {
display: inline-table;
}
.delete-button {
color: $intermediate-color;
float: right;
margin-left: 1em;
}
|