mirror of
https://github.com/status-im/consul.git
synced 2025-02-13 06:06:40 +00:00
* 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>
50 lines
1.2 KiB
SCSS
50 lines
1.2 KiB
SCSS
%modal-dialog.warning header {
|
|
background-color: var(--token-color-vault-gradient-faint-start);
|
|
border-color: var(--token-color-vault-brand);
|
|
color: var(--token-color-vault-foreground);
|
|
}
|
|
%modal-dialog.warning header > *:not(label) {
|
|
font-size: var(--typo-size-500);
|
|
font-weight: var(--typo-weight-semibold);
|
|
}
|
|
%modal-dialog.warning header::before {
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
|
color: var(--token-color-vault-brand);
|
|
float: left;
|
|
margin-top: 2px;
|
|
margin-right: 3px;
|
|
}
|
|
%modal-dialog-overlay {
|
|
background-color: var(--token-color-surface-interactive);
|
|
opacity: 0.9;
|
|
}
|
|
%modal-window {
|
|
box-shadow: var(--token-elevation-overlay-box-shadow);
|
|
}
|
|
%modal-window {
|
|
/*%frame-gray-000*/
|
|
background-color: var(--token-color-surface-primary);
|
|
}
|
|
%modal-window > footer,
|
|
%modal-window > header {
|
|
@extend %frame-gray-800;
|
|
}
|
|
%modal-window > header > *:not(button) {
|
|
@extend %h200;
|
|
}
|
|
|
|
.modal-dialog-body,
|
|
%modal-window > footer,
|
|
%modal-window > header {
|
|
border-color: var(--token-color-palette-neutral-300);
|
|
}
|
|
.modal-dialog-body {
|
|
border-style: solid;
|
|
border-left-width: 1px;
|
|
border-right-width: 1px;
|
|
}
|
|
%modal-window > footer,
|
|
%modal-window > header {
|
|
border-width: 1px;
|
|
}
|