aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/StyleProvider.scss
blob: 99796f1fb9cf5cc4de90815ea1f91dd830785fd4 (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
.styleProvider-filter,
.styleProvider-paint,
.styleProvider-paint-selected,
.styleProvider-lock {
    z-index: 2; // has to be above title which is z-index 1
    font-size: 10;
    width: 20;
    height: 20;
    position: absolute;
    right: -20;
    top: 0;
    background: black;
    pointer-events: all;
    opacity: 0.3;
    display: flex;
    flex-direction: column;
    color: red;
    border-radius: 3px;
    justify-content: center;
    cursor: default;
}
.styleProvider-filter {
    right: 20;
    .styleProvider-filterShift {
        left: 0;
        top: 0;
        position: absolute;
    }
    .dropdown-container {
        width: 15px !important;
        margin: auto !important;
    }
}
.styleProvider-paint-selected,
.styleProvider-paint {
    top: 15;
}
.styleProvider-paint-selected {
    right: -40;
}
.styleProvider-lock:hover,
.styleProvider-filter:hover {
    opacity: 1;
}

.styleProvider-treeView-icon,
.styleProvider-treeView-icon-active {
    margin-left: 0;
    margin-right: 0;
}

.styleProvider-treeView-icon {
    opacity: 0;
}