mirror of
https://github.com/status-im/consul.git
synced 2025-01-19 02:03:00 +00:00
676a520ce3
* Refactor grid styling for Topology page * Crate TopologyMetrics Button component and move styling * Create intention ID * fixup button styling * Return a link to the create intention page * Rename Button to Popover component * Fixup serializer test * ui: Inline Topology Intention Actions (#9153) * Add arrow and dot to/from metrics back in * Add addional space to have metrics wrap and show in smaller screens * Move logic for finding positioning * Use color variables Co-authored-by: John Cowen <johncowen@users.noreply.github.com>
126 lines
2.5 KiB
SCSS
126 lines
2.5 KiB
SCSS
.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;
|
|
}
|
|
}
|
|
div:nth-child(3) {
|
|
border-top: 1px solid $gray-200;
|
|
}
|
|
}
|
|
|
|
// Metrics Container
|
|
#metrics-container {
|
|
div:first-child {
|
|
background-color: $white;
|
|
}
|
|
.link {
|
|
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;
|
|
}
|
|
.config-link::before {
|
|
@extend %with-docs-mask, %as-pseudo;
|
|
}
|
|
}
|
|
div:nth-child(3) {
|
|
border-top: 1px solid $gray-200;
|
|
}
|
|
}
|
|
|
|
// SVG Line styling
|
|
#downstream-lines svg,
|
|
#upstream-lines svg {
|
|
path {
|
|
fill: $transparent;
|
|
}
|
|
circle {
|
|
fill: $white;
|
|
}
|
|
#allow-arrow {
|
|
fill: $gray-300;
|
|
stroke-linejoin: round;
|
|
}
|
|
path,
|
|
#allow-dot,
|
|
#allow-arrow {
|
|
stroke: $gray-300;
|
|
stroke-width: 2;
|
|
}
|
|
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;
|
|
}
|
|
}
|