aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/DataVizBox.scss
blob: 32a01355e6cc26c234731c96e4be5b1552acd12d (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
.dataViz-box {
    overflow: auto;
    height: 100%;
    width: 100%;

    .datatype-button {
        display: flex;
        flex-direction: row;
    }

    .dataviz-overlayButton-sidebar {
        background: #121721;
        height: 25px;
        width: 25px;
        right: 5px;
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        pointer-events: all;
        z-index: 1; // so it appears on top of the document's title, if shown

        // box-shadow: $standard-box-shadow;
        // transition: 0.2s;

        &:hover {
            filter: brightness(0.85);
        }
    }

    .liveSchema-checkBox {
        margin-left: 10px;
        margin-bottom: -35px;
    }
    .filterData-checkBox {
        margin-left: 10px;
        margin-bottom: -10px;
    }

    .displaySchemaLive {
        margin-bottom: 20px;
    }

    .dataviz-sidebar {
        position: absolute;
        right: 0px;
        top: 0px;
        height: 100%;
    }
    .button-container {
        pointer-events: unset;
    }

    .dataVizBox-annotationLayer {
        position: absolute;
        transform-origin: left top;
        top: 0px;
        width: 100%;
        pointer-events: none;
        mix-blend-mode: multiply;
    }
}
.start-message {
    margin: 10px;
    align-self: baseline;
}