aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTimeView.scss
blob: 4e06fdb84e154af7221b128d61ff165eea56bcbc (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
84
85
86
87
88
.collectionTimeView {
    display: flex;
    flex-direction: row;
    position: absolute;
    height: 100%;
    width: 100%;

    .collectionTimeView-flyout {
        width: 400px;
        height: 300px;
        display: inline-block;

        .collectionTimeView-flyout-item {
            background-color: lightgray;
            text-align: left;
            display: inline-block;
            position: relative;
            width: 100%;
        }
    }

    .pivotKeyEntry {
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 10;
        pointer-events: all;
        padding: 5px;
        border: 1px solid black;
    }

    .collectionTimeView-treeView {
        display: flex;
        flex-direction: column;
        width: 200px;
        height: 100%;

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

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

                .collectionTimeView-span {
                    margin: auto;
                }
            }

            >div,
            >div>div {
                width: 100%;
                height: 100%;
                text-align: center;
            }
        }

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

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

    .collectionTimeView-dragger {
        background-color: lightgray;
        height: 40px;
        width: 20px;
        position: absolute;
        border-radius: 10px;
        top: 55%;
        border: 1px black solid;
        z-index: 2;
        left: -10px;
    }
}