open-consul/ui/packages/consul-ui/app/components/consul/tomography/graph/index.scss

41 lines
858 B
SCSS
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.tomography-graph {
.background {
fill: var(--token-color-surface-strong);
}
.axis {
fill: none;
stroke: var(--token-color-palette-neutral-300);
stroke-dasharray: 4 4;
}
.border {
fill: none;
stroke: var(--token-color-palette-neutral-300);
}
.point {
stroke: var(--token-color-foreground-disabled);
fill: var(--token-color-consul-foreground);
}
2020-11-30 17:02:54 +00:00
.lines rect {
fill: var(--token-color-consul-foreground);
2020-11-30 17:02:54 +00:00
stroke: transparent;
stroke-width: 5px;
}
2020-11-30 17:02:54 +00:00
.lines rect:hover {
fill: var(--token-color-palette-neutral-300);
2020-11-30 17:02:54 +00:00
height: 3px;
y: -1px;
}
.tick line {
stroke: var(--token-color-palette-neutral-300);
}
.tick text {
text-anchor: start;
color: var(--token-color-foreground-strong);
}
}