blob: 140be21402657a14ad92f57364cc80b48b12902f (
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
|
@import "./global/globalCssVariables";
// this file is for overriding all the css from installed node modules
// goldenlayout stuff
div .lm_header {
background: $dark-gray;
overflow: hidden;
}
/* Width */
.lm_header::-webkit-scrollbar {
-webkit-appearance: none;
display: none;
}
/* Width */
.lm_header:hover::-webkit-scrollbar {
-webkit-appearance: none;
display: block;
height: 0px;
}
/* Track */
.lm_header:hover::-webkit-scrollbar-track {
-webkit-appearance: none;
display: none;
}
/* Handle */
.lm_header:hover::-webkit-scrollbar-thumb {
-webkit-appearance: none;
background: $dark-gray;
}
/* Handle on hover */
.lm_header:hover::-webkit-scrollbar-thumb:hover {
-webkit-appearance: none;
background: $dark-gray;
}
.lm_tabs {
display: flex;
position: absolute;
width: calc(100% - 60px);
overflow: scroll;
background: $dark-gray;
}
.lm_tab {
// margin-top: 0.6em !important;
// padding-top: 0.5em !important;
// min-height: 1.35em;
// padding-bottom: 0px;
// border-radius: 5px;
font-family: $sans-serif !important;
}
.lm_header .lm_controls {
align-items: center;
position: absolute;
background-color: $dark-gray;
border-radius: 5px;
display: flex;
justify-content: space-evenly;
height: 18px;
width: 65px;
}
// @TODO the ril__navgiation buttons in the img gallery are a lil messed up but I can't figure out
// why. Low priority for now but it's bugging me. --Julie
|