bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/connection-status/icon/styles.scss
Pedro Beschorner Marin 3672a909f1 style(connection status): replace icons
Replace previous icon with a flexible version to fit inside other
nodes (e.g: buttons).
2021-04-23 06:32:11 -03:00

41 lines
749 B
SCSS

.signalBars {
align-items: flex-end;
display: flex;
justify-content: space-between;
width: 100%;
height: 100%;
}
.signalBars .bar {
width: 20%;
}
.signalBars .bar.firstBar { height: 25%; }
.signalBars .bar.secondBar { height: 50%; }
.signalBars .bar.thirdBar { height: 75%; }
.signalBars .bar.fourthBar { height: 100%; }
.critical .bar {
background-color: var(--color-danger);
}
.danger .bar {
background-color: var(--color-warning);
}
.warning .bar {
background-color: var(--color-success);
}
.normal .bar {
background-color: var(--color-white);
}
.fourBars .bar.fifthBar,
.threeBars .bar.fifthBar,
.threeBars .bar.fourthBar,
.oneBar .bar:not(.firstBar),
.twoBars .bar:not(.firstBar):not(.secondBar) {
opacity: .5;
}