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;
|
2021-10-07 18:21:11 +00:00
|
|
|
color: rgb(var(--tone-gray-700));
|
2021-04-08 19:14:53 +00:00
|
|
|
overflow: hidden;
|
2021-11-23 18:32:11 +00:00
|
|
|
background-color: rgb(var(--tone-gray-000));
|
2021-10-07 18:21:11 +00:00
|
|
|
border-radius: var(--decor-radius-100);
|
2022-01-07 16:15:22 +00:00
|
|
|
border: 1px solid;
|
|
|
|
/* TODO: If this color is combined with the above */
|
|
|
|
/* border property then the compressor removes the color */
|
|
|
|
border-color: rgb(var(--tone-gray-200));
|
2021-04-08 19:14:53 +00:00
|
|
|
p {
|
|
|
|
padding: 12px 12px 0 12px;
|
2021-10-07 18:21:11 +00:00
|
|
|
font-size: var(--typo-size-500);
|
|
|
|
font-weight: var(--typo-weight-semibold);
|
2021-04-08 19:14:53 +00:00
|
|
|
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 {
|
|
|
|
dl {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
dd {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: rgb(var(--tone-gray-700));
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
|
|
|
span {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
span::before,
|
|
|
|
dt::before {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.nspace dt::before,
|
|
|
|
.health dt::before {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
2022-01-11 15:04:06 +00:00
|
|
|
.partition dt::before {
|
|
|
|
@extend %with-user-team-mask, %as-pseudo;
|
|
|
|
}
|
2021-04-08 19:14:53 +00:00
|
|
|
.nspace dt::before {
|
|
|
|
@extend %with-folder-outline-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
.health dt::before {
|
|
|
|
@extend %with-help-circle-outline-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
.health dt::before {
|
|
|
|
@extend %with-help-circle-outline-mask, %as-pseudo;
|
|
|
|
}
|
2022-01-11 15:04:06 +00:00
|
|
|
.partition dt::before,
|
2021-04-08 19:14:53 +00:00
|
|
|
.nspace dt::before,
|
|
|
|
.health dt::before {
|
2022-03-15 12:54:14 +00:00
|
|
|
--icon-color: rgb(var(--tone-gray-500));
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
|
|
|
.passing::before {
|
2021-06-22 17:56:17 +00:00
|
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
2022-03-15 12:54:14 +00:00
|
|
|
--icon-color: rgb(var(--tone-green-500));
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
|
|
|
.warning::before {
|
2021-06-22 17:56:17 +00:00
|
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
2022-03-15 12:54:14 +00:00
|
|
|
--icon-color: rgb(var(--tone-orange-500));
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
|
|
|
.critical::before {
|
2021-06-22 17:56:17 +00:00
|
|
|
@extend %with-cancel-square-fill-mask, %as-pseudo;
|
2022-03-15 12:54:14 +00:00
|
|
|
--icon-color: rgb(var(--tone-red-500));
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
|
|
|
.empty::before {
|
|
|
|
@extend %with-minus-square-fill-mask, %as-pseudo;
|
2022-03-15 12:54:14 +00:00
|
|
|
--icon-color: rgb(var(--tone-gray-500));
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.details {
|
|
|
|
padding: 0 12px 12px 12px;
|
2022-01-11 15:04:06 +00:00
|
|
|
> *:not(:last-child) {
|
|
|
|
padding-bottom: 6px;
|
|
|
|
}
|
|
|
|
.group {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 20px 1fr;
|
|
|
|
grid-template-rows: repeat(2, 1fr);
|
|
|
|
grid-template-areas:
|
|
|
|
'partition partition'
|
|
|
|
'union namespace';
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
grid-area: union;
|
|
|
|
padding-left: 7px;
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
span::before {
|
|
|
|
margin-right: 0px;
|
|
|
|
@extend %with-union-mask, %as-pseudo;
|
2022-03-15 12:54:14 +00:00
|
|
|
--icon-color: rgb(var(--tone-gray-500));
|
2022-01-11 15:04:06 +00:00
|
|
|
}
|
|
|
|
dl:first-child {
|
|
|
|
grid-area: partition;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
}
|
|
|
|
dl:nth-child(2) {
|
|
|
|
grid-area: namespace;
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 19:14:53 +00:00
|
|
|
}
|
2021-05-27 12:23:54 +00:00
|
|
|
}
|