mirror of https://github.com/hashicorp/consul
30 lines
599 B
SCSS
30 lines
599 B
SCSS
|
%healthcheck-output {
|
||
|
border-width: 1px;
|
||
|
}
|
||
|
%healthcheck-output,
|
||
|
%healthcheck-output pre {
|
||
|
border-radius: $decor-radius-100;
|
||
|
}
|
||
|
%healthcheck-output dd:first-of-type {
|
||
|
color: $gray-400;
|
||
|
}
|
||
|
%healthcheck-output pre {
|
||
|
background-color: $black;
|
||
|
color: $white;
|
||
|
}
|
||
|
%healthcheck-output.passing {
|
||
|
/* TODO: this should be a frame-gray */
|
||
|
// @extend %frame-green-500;
|
||
|
color: $gray-900;
|
||
|
border-color: $gray-200;
|
||
|
border-style: solid;
|
||
|
}
|
||
|
%healthcheck-output.warning {
|
||
|
@extend %frame-yellow-500;
|
||
|
color: $gray-900;
|
||
|
}
|
||
|
%healthcheck-output.critical {
|
||
|
@extend %frame-red-500;
|
||
|
color: $gray-900;
|
||
|
}
|