mirror of
https://github.com/status-im/consul.git
synced 2025-01-29 06:55:25 +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>
41 lines
1.0 KiB
SCSS
41 lines
1.0 KiB
SCSS
.more-popover-menu {
|
|
@extend %more-popover-menu;
|
|
}
|
|
%more-popover-menu {
|
|
@extend %popover-menu;
|
|
}
|
|
/* using the inut in the selector here means it won't */
|
|
/* take on the default :checked chevron icon */
|
|
%more-popover-menu .popover-menu > [type='checkbox'] + label {
|
|
@extend %more-popover-menu-trigger;
|
|
}
|
|
/* This gives the trigger a slightly larger invisible hit area */
|
|
%more-popover-menu-trigger {
|
|
padding: 7px;
|
|
}
|
|
%more-popover-menu-trigger > * {
|
|
background-color: transparent;
|
|
border-radius: var(--decor-radius-100);
|
|
width: 30px;
|
|
height: 30px;
|
|
font-size: 0;
|
|
}
|
|
%more-popover-menu-trigger > *::after {
|
|
--icon-name: icon-more-horizontal;
|
|
--icon-color: var(--token-color-foreground-strong);
|
|
--icon-size: icon-300;
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -8px;
|
|
margin-left: -8px;
|
|
}
|
|
%more-popover-menu-trigger > *:active {
|
|
background-color: var(--token-color-surface-strong);
|
|
}
|
|
%more-popover-menu-trigger > *:hover,
|
|
%more-popover-menu-trigger > *:focus {
|
|
background-color: var(--token-color-surface-strong);
|
|
}
|