2021-04-08 19:14:53 +00:00
|
|
|
#upstream-container .topology-metrics-card:not(:last-child),
|
|
|
|
#downstream-container .topology-metrics-card:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
#upstream-container .topology-metrics-card,
|
|
|
|
#downstream-container .topology-metrics-card {
|
|
|
|
display: block;
|
|
|
|
color: $gray-700;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: $white;
|
|
|
|
border-radius: $decor-radius-100;
|
|
|
|
border: 1px solid $gray-200;
|
|
|
|
p {
|
|
|
|
padding: 12px 12px 0 12px;
|
|
|
|
font-size: $typo-size-500;
|
|
|
|
font-weight: $typo-weight-semibold;
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
2021-04-13 16:17:53 +00:00
|
|
|
p.empty {
|
|
|
|
padding: 12px !important;
|
|
|
|
}
|
2021-04-08 19:14:53 +00:00
|
|
|
div {
|
|
|
|
display: inline-flex;
|
|
|
|
dl {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
dd {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
span::before,
|
|
|
|
dt::before {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.nspace dt::before,
|
|
|
|
.health dt::before {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
.nspace dt::before {
|
|
|
|
@extend %with-folder-outline-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
.health dt::before {
|
|
|
|
@extend %with-help-circle-outline-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
.nspace dt::before {
|
|
|
|
@extend %with-folder-outline-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
.health dt::before {
|
|
|
|
@extend %with-help-circle-outline-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
.nspace dt::before,
|
|
|
|
.health dt::before {
|
|
|
|
background-color: $gray-500;
|
|
|
|
}
|
|
|
|
.passing::before {
|
2021-06-22 17:56:17 +00:00
|
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
2021-04-08 19:14:53 +00:00
|
|
|
background-color: $green-500;
|
|
|
|
}
|
|
|
|
.warning::before {
|
2021-06-22 17:56:17 +00:00
|
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
2021-04-08 19:14:53 +00:00
|
|
|
background-color: $orange-500;
|
|
|
|
}
|
|
|
|
.critical::before {
|
2021-06-22 17:56:17 +00:00
|
|
|
@extend %with-cancel-square-fill-mask, %as-pseudo;
|
2021-04-08 19:14:53 +00:00
|
|
|
background-color: $red-500;
|
|
|
|
}
|
|
|
|
.empty::before {
|
|
|
|
@extend %with-minus-square-fill-mask, %as-pseudo;
|
|
|
|
color: $gray-500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.details {
|
|
|
|
padding: 0 12px 12px 12px;
|
|
|
|
}
|
2021-05-27 12:23:54 +00:00
|
|
|
}
|