2017-09-19 14:47:10 +00:00
|
|
|
.status-text {
|
2018-05-29 17:32:41 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-05-29 17:32:41 +00:00
|
|
|
|
|
|
|
@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
|
|
|
}
|