2020-04-08 17:09:36 +00:00
|
|
|
%consul-service-row > a > span:nth-child(2) {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
font-weight: $typo-weight-medium;
|
|
|
|
}
|
|
|
|
%consul-service-row > a > span:first-child,
|
|
|
|
%consul-service-row > a > span:nth-child(3) {
|
|
|
|
@extend %as-pseudo;
|
|
|
|
}
|
2020-04-14 20:07:09 +00:00
|
|
|
|
|
|
|
// Health Checks
|
2020-04-08 17:09:36 +00:00
|
|
|
%consul-service-row .empty {
|
2020-04-14 20:07:09 +00:00
|
|
|
@extend %with-minus-square-fill-mask;
|
2020-04-08 17:09:36 +00:00
|
|
|
background-color: #7c8797;
|
|
|
|
}
|
|
|
|
%consul-service-row .passing {
|
2020-04-14 20:07:09 +00:00
|
|
|
@extend %with-check-circle-fill-mask;
|
2020-04-08 17:09:36 +00:00
|
|
|
background-color: $green-500;
|
|
|
|
}
|
|
|
|
%consul-service-row .warning {
|
2020-04-14 20:07:09 +00:00
|
|
|
@extend %with-alert-triangle-mask;
|
2020-04-08 17:09:36 +00:00
|
|
|
background-color: $orange-500;
|
|
|
|
}
|
|
|
|
%consul-service-row .critical {
|
2020-04-14 20:07:09 +00:00
|
|
|
@extend %with-cancel-square-fill-mask;
|
2020-04-08 17:09:36 +00:00
|
|
|
background-color: $red-500;
|
|
|
|
}
|
|
|
|
%consul-service-row .proxy::before {
|
2020-04-14 20:07:09 +00:00
|
|
|
@extend %with-git-commit-mask, %as-pseudo;
|
2020-04-08 17:09:36 +00:00
|
|
|
background-color: $gray-500;
|
|
|
|
}
|