aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionView.scss
blob: 837219e1d189aff84930d7d58c8c6e5988cb432d (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@use '../global/globalCssVariables.module.scss' as global;

.collectionView {
    border-width: 0px;
    border-color: global.$light-gray;
    border-style: solid;
    border-radius: 0 0 global.$border-radius global.$border-radius;
    box-sizing: border-box;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    //overflow: hidden; // bcz: used to be 'auto' which would create scrollbars when there's a floating doc that's not visible. not sure if that's better, but the scrollbars are annoying...

    .collectionView-filterDragger {
        background-color: rgb(140, 139, 139);
        height: 40px;
        width: 10px;
        position: absolute;
        top: 55%;
        border: 1px black solid;
        border-radius: 0px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-right: unset;
        z-index: 2;
    }

    .collectionTimeView-treeView {
        display: flex;
        flex-direction: column;
        width: 200px;
        height: 100%;
        position: absolute;
        right: 0px;
        top: 0px;
        border-left: solid 1px;
        z-index: 1;

        .collectionTimeView-addfacet {
            display: inline-block;
            width: 200px;
            height: 30px;
            background: darkGray;
            text-align: left;

            .collectionTimeView-button {
                align-items: center;
                display: flex;
                width: 100%;
                height: 100%;

                .collectionTimeView-span {
                    margin: auto;
                }
            }

            > div,
            > div > div {
                width: 100%;
                height: 100%;
            }
        }

        .collectionTimeView-tree {
            display: inline-block;
            width: 100%;
            height: calc(100% - 30px);
        }
    }
}

#google-tags {
    transition: all 0.5s ease 0s;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border: 2px solid black;
    border-radius: 50%;
    padding: 3px;
    background: white;
}