mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
6bdb2c2216
- Move AuthDialog to use a Glimmer Component plus native named blocks/slots. - Unravel the Auth* contextual components, there wasn't a lot of point having them as contextual components and now the AuthDialog (non-view-specific state machine component) can be used entirely separately from the view-specific components (AuthForm and AuthProfile). - Move all the ACL related components that are in the main app chrome/navigation (our HashicorpConsul component) in our consul-acls sub package/module (which will eventually be loaded on demand only when ACLs are enabled)
35 lines
808 B
SCSS
35 lines
808 B
SCSS
%menu-panel {
|
|
border: var(--decor-border-100);
|
|
border-radius: var(--decor-radius-200);
|
|
box-shadow: var(--decor-elevation-600);
|
|
}
|
|
%menu-panel > ul > li {
|
|
list-style-type: none;
|
|
}
|
|
%menu-panel-header {
|
|
@extend %p2;
|
|
}
|
|
%menu-panel-separator {
|
|
@extend %p3;
|
|
text-transform: uppercase;
|
|
font-weight: var(--typo-weight-medium);
|
|
}
|
|
%menu-panel-header + ul,
|
|
%menu-panel-separator:not(:first-child) {
|
|
border-top: var(--decor-border-100);
|
|
}
|
|
%menu-panel .is-active > *::after {
|
|
@extend %with-check-plain-mask, %as-pseudo;
|
|
}
|
|
%menu-panel {
|
|
border-color: rgb(var(--tone-gray-300));
|
|
background-color: rgb(var(--tone-gray-000));
|
|
}
|
|
%menu-panel-separator {
|
|
color: rgb(var(--tone-gray-600));
|
|
}
|
|
%menu-panel-header + ul,
|
|
%menu-panel-separator:not(:first-child) {
|
|
border-color: rgb(var(--tone-gray-300));
|
|
}
|