2020-10-05 17:07:35 +00:00
|
|
|
.topology-container {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Columns/Containers & Lines
|
|
|
|
#downstream-container,
|
|
|
|
#metrics-container,
|
|
|
|
#upstream-container {
|
|
|
|
border: 1px solid $gray-200;
|
|
|
|
border-radius: $decor-radius-100;
|
|
|
|
}
|
|
|
|
#downstream-container,
|
|
|
|
#upstream-container {
|
|
|
|
background-color: $gray-100;
|
|
|
|
}
|
|
|
|
#downstream-container div:first-child {
|
|
|
|
display: inline-flex;
|
|
|
|
span::before {
|
|
|
|
@extend %with-info-circle-outline-mask, %as-pseudo;
|
|
|
|
background-color: $gray-500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#upstream-container .card,
|
|
|
|
#downstream-container .card {
|
|
|
|
background-color: $white;
|
|
|
|
border-radius: $decor-radius-100;
|
|
|
|
border: 1px solid $gray-200;
|
|
|
|
div {
|
|
|
|
dd {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
@extend %with-check-circle-fill-color-mask, %as-pseudo;
|
|
|
|
background-color: $green-500;
|
|
|
|
}
|
|
|
|
.warning::before {
|
|
|
|
@extend %with-alert-triangle-color-mask, %as-pseudo;
|
|
|
|
background-color: $orange-500;
|
|
|
|
}
|
|
|
|
.critical::before {
|
|
|
|
@extend %with-cancel-square-fill-color-mask, %as-pseudo;
|
|
|
|
background-color: $red-500;
|
|
|
|
}
|
|
|
|
}
|
2020-10-09 20:31:15 +00:00
|
|
|
div:nth-child(3) {
|
|
|
|
border-top: 1px solid $gray-200;
|
|
|
|
}
|
2020-10-05 17:07:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Metrics Container
|
|
|
|
#metrics-container {
|
|
|
|
div:first-child {
|
|
|
|
background-color: $white;
|
|
|
|
}
|
2020-10-09 20:31:15 +00:00
|
|
|
.link {
|
2020-10-05 17:07:35 +00:00
|
|
|
background-color: $gray-100;
|
|
|
|
a {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
a::before {
|
|
|
|
background-color: $gray-500;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: $color-action;
|
|
|
|
}
|
|
|
|
.metrics-link::before {
|
|
|
|
@extend %with-exit-mask, %as-pseudo;
|
|
|
|
}
|
2020-10-23 13:44:38 +00:00
|
|
|
.config-link::before {
|
2020-10-05 17:07:35 +00:00
|
|
|
@extend %with-docs-mask, %as-pseudo;
|
|
|
|
}
|
|
|
|
}
|
2020-10-09 20:31:15 +00:00
|
|
|
div:nth-child(3) {
|
|
|
|
border-top: 1px solid $gray-200;
|
|
|
|
}
|
2020-10-05 17:07:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SVG Line styling
|
|
|
|
#downstream-lines svg,
|
|
|
|
#upstream-lines svg {
|
|
|
|
path {
|
|
|
|
fill: $transparent;
|
|
|
|
}
|
|
|
|
circle {
|
|
|
|
fill: $white;
|
|
|
|
}
|
2020-10-08 15:52:09 +00:00
|
|
|
#allow-arrow {
|
2020-10-05 17:07:35 +00:00
|
|
|
fill: $gray-300;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
}
|
|
|
|
path,
|
2020-10-08 15:52:09 +00:00
|
|
|
#allow-dot,
|
|
|
|
#allow-arrow {
|
2020-10-05 17:07:35 +00:00
|
|
|
stroke: $gray-300;
|
|
|
|
stroke-width: 2;
|
|
|
|
}
|
2020-10-08 15:52:09 +00:00
|
|
|
path[data-permission='deny'] {
|
|
|
|
stroke: $red-500;
|
|
|
|
}
|
|
|
|
#deny-dot {
|
|
|
|
stroke: $red-500;
|
|
|
|
stroke-width: 2;
|
|
|
|
}
|
|
|
|
#deny-arrow {
|
|
|
|
fill: $red-500;
|
|
|
|
stroke: $red-500;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
}
|
2020-10-05 17:07:35 +00:00
|
|
|
}
|