open-consul/ui/packages/consul-ui/app/components/menu-panel/skin.scss
John Cowen 1ba9e61e37
ui: Side navigation tweaks (#9812)
* Remove footer and add the Consul version to the Help menu

* Tweak menu text and button styling

* Tweak some coloring and spacing

* Add slightly larger Consul logo
2021-02-25 09:35:53 +00:00

50 lines
979 B
SCSS

%menu-panel {
border: $decor-border-100;
border-radius: $decor-radius-200;
box-shadow: $decor-elevation-600;
}
%menu-panel > ul > li {
list-style-type: none;
}
%menu-panel dt {
font-weight: $typo-weight-bold;
}
%menu-panel dl,
%menu-panel-header {
@extend %p2;
}
%menu-panel-separator {
@extend %p3;
text-transform: uppercase;
font-weight: $typo-weight-medium;
}
%menu-panel dt span {
font-weight: $typo-weight-normal;
}
%menu-panel-header + ul,
%menu-panel-separator:not(:first-child) {
border-top: $decor-border-100;
}
%menu-panel .is-active > *::after {
@extend %with-check-plain-mask, %as-pseudo;
}
%menu-panel {
border-color: var(--gray-300);
background-color: var(--gray-000);
}
%menu-panel dt,
%menu-panel dd {
color: var(--gray-800);
}
%menu-panel dt span {
color: var(--gray-600);
}
%menu-panel-separator {
color: var(--gray-600);
}
%menu-panel-header + ul,
%menu-panel-separator:not(:first-child) {
border-color: var(--gray-300);
}