aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.scss
blob: 5a14aa54d6ae64e95eb5b8ae301889ded609d6d4 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
@import "../global_variables";
#body {
    padding: 20px;
    padding-left: 10px;
    padding-right: 0px;
    background: $light-color-secondary;
    font-size: 13px;
    overflow: scroll;
}

ul {
    list-style: none;
    padding-left: 20px;
}

li {
    margin: 5px 0;
}

.collection-child {
    margin-top: 10px;
    margin-bottom: 10px;
}

.no-indent {
    padding-left: 0;
}

.bullet {
    width: 1.5em;
    display: inline-block;
    color: $intermediate-color;
}

.coll-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.collectionTreeView-dropTarget {
    border: 0px solid transparent;
    border-radius: $border-radius;
    box-sizing: border-box;
    height: 100%;
}

.docContainer {
    display: inline-table;
}

.docContainer:hover {
    .delete-button {
        display: inline;
        width: auto;
    }
}

.delete-button {
    color: $intermediate-color;
    float: right;
    margin-left: 15px;
    margin-top: 3px;
    display: inline;
}