mirror of
https://github.com/status-im/consul.git
synced 2025-01-30 23:46:03 +00:00
06ff4228b4
* update red color variables to hds * change background red to be one step lighter * map oranges * map greens * map blues * map greys * delete themes, colours: lemon, magenta, strawberry, and vault color aliases * add unmapped rainbow colours * replace white and transparent vars, remove unused semantic vars and frame placeholders * small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour * add unmapped grays, remove dark theme, manually set nav bar to use dark colours * map consul pink colour * map yellows * add unmapped oranges, delete light theme * remove readme, base variables, clean up dangling colours * Start working on the nav disclosure menus * Update main-nav-horizontal dropdowns * Format template * Update box-shadow tokens * Replace --tone- usage with tokens * Update nav disabled state and panel border colour * Replace rgb usage on tile * Fix permissions modal overlay * More fixes * Replace orange-500 with amber-200 * Update badge colors * Update vertical sidebar colors * Remove top border on consul peer list ul --------- Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
137 lines
3.1 KiB
SCSS
137 lines
3.1 KiB
SCSS
section[data-route='dc.show.serverstatus'] {
|
|
@extend %serverstatus-route;
|
|
}
|
|
%serverstatus-route .server-failure-tolerance {
|
|
@extend %server-failure-tolerance;
|
|
}
|
|
%serverstatus-route .redundancy-zones {
|
|
@extend %redundancy-zones;
|
|
}
|
|
%redundancy-zones section {
|
|
@extend %redundancy-zone;
|
|
}
|
|
|
|
/**/
|
|
|
|
%serverstatus-route h2,
|
|
%serverstatus-route h3 {
|
|
@extend %h200;
|
|
}
|
|
|
|
%server-failure-tolerance {
|
|
@extend %panel;
|
|
box-shadow: none;
|
|
padding: var(--padding-y) var(--padding-x);
|
|
max-width: 770px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
%server-failure-tolerance > header {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: 0.5rem; /* 8px */
|
|
margin-bottom: 1rem; /* 16px */
|
|
border-bottom: var(--decor-border-100);
|
|
border-color: var(--tone-border);
|
|
}
|
|
|
|
%server-failure-tolerance header em {
|
|
@extend %pill-200;
|
|
font-size: 0.812rem; /* 13px */
|
|
background-color: var(--token-color-surface-interactive-active);
|
|
|
|
text-transform: uppercase;
|
|
font-style: normal;
|
|
}
|
|
%server-failure-tolerance > section {
|
|
width: 50%;
|
|
}
|
|
%server-failure-tolerance > section,
|
|
%server-failure-tolerance dl {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
%server-failure-tolerance dl {
|
|
flex-grow: 1;
|
|
justify-content: space-between;
|
|
}
|
|
%server-failure-tolerance dd {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
%server-failure-tolerance dl.warning dd::before {
|
|
--icon-name: icon-alert-circle;
|
|
--icon-size: icon-800;
|
|
--icon-color: var(--token-color-foreground-warning);
|
|
content: '';
|
|
margin-right: 0.5rem; /* 8px */
|
|
}
|
|
%server-failure-tolerance section:first-of-type dl {
|
|
padding-right: 1.5rem; /* 24px */
|
|
}
|
|
%server-failure-tolerance dt {
|
|
@extend %p2;
|
|
color: var(--token-color-foreground-faint);
|
|
}
|
|
%server-failure-tolerance dd {
|
|
font-size: var(--typo-size-250);
|
|
color: var(--token-color-hashicorp-brand);
|
|
}
|
|
%server-failure-tolerance header span::before {
|
|
--icon-name: icon-info;
|
|
--icon-size: icon-300;
|
|
--icon-color: var(--token-color-foreground-faint);
|
|
vertical-align: unset;
|
|
content: '';
|
|
}
|
|
|
|
%serverstatus-route section:not([class*='-tolerance']) h2 {
|
|
margin-top: 1.5rem; /* 24px */
|
|
margin-bottom: 1.5rem; /* 24px */
|
|
}
|
|
%serverstatus-route section:not([class*='-tolerance']) header {
|
|
margin-top: 18px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
%redundancy-zones h3 {
|
|
@extend %h300;
|
|
}
|
|
%redundancy-zone header {
|
|
display: flow-root;
|
|
}
|
|
%redundancy-zone header h3 {
|
|
float: left;
|
|
margin-right: 0.5rem; /* 8px */
|
|
}
|
|
|
|
%redundancy-zone header dl {
|
|
@extend %horizontal-kv-list;
|
|
@extend %pill-500;
|
|
}
|
|
%redundancy-zone header dt {
|
|
@extend %visually-unhidden;
|
|
}
|
|
%redundancy-zone header dl:not(.warning) {
|
|
background-color: var(--token-color-surface-strong);
|
|
}
|
|
%redundancy-zone header dl.warning {
|
|
background-color: var(--token-color-border-warning);
|
|
color: var(--token-color-palette-amber-400);
|
|
}
|
|
%redundancy-zone header dl.warning::before {
|
|
--icon-name: icon-alert-circle;
|
|
--icon-size: icon-000;
|
|
margin-right: 0.312rem; /* 5px */
|
|
content: '';
|
|
}
|
|
%redundancy-zone header dt::after {
|
|
content: ':';
|
|
display: inline-block;
|
|
vertical-align: revert;
|
|
background-color: transparent;
|
|
}
|