open-nomad/ui/app/styles/components/node-status-light.scss

37 lines
511 B
SCSS
Raw Normal View History

$size: 1.3rem;
2017-09-19 14:47:10 +00:00
.node-status-light {
display: inline-flex;
2017-09-19 14:47:10 +00:00
height: $size;
width: $size;
border-radius: $size / 2;
vertical-align: middle;
align-items: center;
justify-content: center;
2017-09-19 14:47:10 +00:00
background: $black;
color: $white;
2017-09-19 14:47:10 +00:00
&.ready {
background: $primary;
}
&.down {
background: $danger;
}
&.initializing {
background: $grey-lighter;
2017-09-19 14:47:10 +00:00
}
2018-05-29 17:27:24 +00:00
&.ineligible,
&.draining {
2018-05-29 17:27:24 +00:00
background: $warning;
}
.icon {
width: $size - 0.2rem;
height: $size - 0.2rem;
}
2017-09-19 14:47:10 +00:00
}