e10fb566c9
- Reduce issues with i*-devices and vh height - Calculate height better for mobile devices and add min-height of the map - Fix icon and combined class issues in multiple browsers - THX to browser stack for free open source account to fix the problems
30 lines
473 B
SCSS
30 lines
473 B
SCSS
.bar {
|
|
background: mix($color-new, $color-white, 60);
|
|
display: block;
|
|
height: 1.4em;
|
|
position: relative;
|
|
|
|
&.warning {
|
|
background: mix($color-offline, $color-white, 60);
|
|
|
|
span {
|
|
background: $color-offline;
|
|
}
|
|
}
|
|
|
|
span {
|
|
background: $color-new;
|
|
display: inline-block;
|
|
height: 1.4em;
|
|
}
|
|
|
|
label {
|
|
color: $color-white;
|
|
font-weight: bold;
|
|
position: absolute;
|
|
right: .5em;
|
|
top: .1em;
|
|
white-space: nowrap;
|
|
}
|
|
}
|