open-nomad/ui/app/styles/components/status-text.scss

25 lines
338 B
SCSS
Raw Normal View History

2017-09-19 14:47:10 +00:00
.status-text {
font-weight: $weight-semibold;
2017-09-19 14:47:10 +00:00
&.node-ready {
color: $nomad-green-dark;
}
&.node-down {
color: $danger;
}
&.node-initializing {
color: $grey;
}
@each $name, $pair in $colors {
$color: nth($pair, 1);
$color-invert: nth($pair, 2);
&.is-#{$name} {
color: $color;
}
}
2017-09-19 14:47:10 +00:00
}