c7d89f364d
* Begin refactoring CSS into component folders. Moved most components into layout/skin folders, left out a couple of ones I want to think about more. * Adjust grays based on recent Structure changes * Switch to fullscreen layout for lists and detail, left aligned forms (#4435) * Specifically use the 'actions_close' label, not just the :last-child (actions-group) * Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
32 lines
561 B
SCSS
32 lines
561 B
SCSS
.tomography .background {
|
|
fill: $ui-gray-050;
|
|
}
|
|
.tomography .axis {
|
|
fill: none;
|
|
stroke: $ui-gray-300;
|
|
stroke-dasharray: 4 4;
|
|
}
|
|
.tomography .border {
|
|
fill: none;
|
|
stroke: $ui-gray-300;
|
|
}
|
|
.tomography .point {
|
|
stroke: $ui-gray-400;
|
|
fill: $brand-magenta-600;
|
|
}
|
|
.tomography .lines line {
|
|
stroke: $brand-magenta-600;
|
|
}
|
|
.tomography .lines line:hover {
|
|
stroke: $ui-gray-300;
|
|
stroke-width: 2px;
|
|
}
|
|
.tomography .tick line {
|
|
stroke: $ui-gray-300;
|
|
}
|
|
.tomography .tick text {
|
|
font-size: $typo-size-600;
|
|
text-anchor: start;
|
|
color: $ui-gray-900;
|
|
}
|