efdae83a87
* ui: Delete a bunch of CSS that we recently moved elsewhere * ui: Add some masking placeholders * Switch out hashicorp logo for one from structure-icons * Change copy-button to use new copy-action icon * Change secret-button to use new visibility-hide/show icons * New folder icon for KVs * Cleanup some of the icons we no longer use * Switch from %with-exit to standard-like %with-exit-icon * Move all chevrons to use structure-icons properly * Use star-fill as much as possible * Remove the remaining icons from icons/index plus the file itself
41 lines
913 B
SCSS
41 lines
913 B
SCSS
@import './loader';
|
|
@import './main-header-horizontal';
|
|
@import '../main-nav-horizontal/index';
|
|
@import './footer';
|
|
[role='banner'] {
|
|
@extend %main-header-horizontal;
|
|
}
|
|
%main-header-horizontal > div {
|
|
@extend %main-nav-horizontal-panel;
|
|
}
|
|
%main-header-horizontal label[for='main-nav-toggle'] {
|
|
@extend %main-nav-horizontal-toggle-button;
|
|
}
|
|
%main-header-horizontal > input {
|
|
@extend %main-nav-horizontal-toggle;
|
|
}
|
|
%main-header-horizontal nav:first-of-type {
|
|
@extend %primary-nav;
|
|
}
|
|
%main-header-horizontal nav:last-of-type {
|
|
@extend %secondary-nav;
|
|
}
|
|
%primary-nav,
|
|
%secondary-nav {
|
|
@extend %main-nav-horizontal;
|
|
}
|
|
%primary-nav label + div {
|
|
@extend %main-nav-horizontal-drop-nav;
|
|
}
|
|
@media #{$--lt-horizontal-nav} {
|
|
%primary-nav {
|
|
margin-top: 65px;
|
|
}
|
|
%secondary-nav li:first-child {
|
|
display: none;
|
|
}
|
|
%primary-nav > ul > li.is-active > a {
|
|
font-weight: $typo-weight-bold;
|
|
}
|
|
}
|