2020-11-03 00:57:49 +00:00
|
|
|
@import './stylesheets/variables';
|
|
|
|
@import './components/container/style';
|
|
|
|
@import './components/header/style';
|
|
|
|
|
|
|
|
.has-woocommerce-navigation {
|
|
|
|
margin-top: -$admin-bar-height;
|
|
|
|
|
|
|
|
#wpadminbar,
|
|
|
|
#adminmenuwrap,
|
|
|
|
#adminmenuback {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#woocommerce-embedded-navigation {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: $navigation-width;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: $gray-900;
|
|
|
|
z-index: 1100; //Must be greater than z-index on .woocommerce-layout__header
|
|
|
|
}
|
|
|
|
|
2020-11-12 17:10:42 +00:00
|
|
|
.woocommerce-navigation__wrapper {
|
2020-11-06 20:52:01 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
height: calc(100vh - #{$header-height});
|
2020-11-12 17:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.components-navigation {
|
2020-11-06 20:52:01 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:57:49 +00:00
|
|
|
&:not(.is-folded) {
|
|
|
|
#wpcontent,
|
|
|
|
#wpfooter {
|
|
|
|
margin-left: $navigation-width;
|
|
|
|
|
|
|
|
@media ( max-width: 960px ) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-folded {
|
|
|
|
#wpcontent,
|
|
|
|
#wpfooter {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-layout__header {
|
|
|
|
margin-left: $header-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
#woocommerce-embedded-navigation {
|
|
|
|
width: $header-height;
|
|
|
|
height: $header-height;
|
|
|
|
|
|
|
|
.woocommerce-navigation-header {
|
|
|
|
&.is-scrolled {
|
|
|
|
box-shadow: $header-scroll-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-navigation-header__site-icon {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-navigation {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|