woocommerce/plugins/woocommerce-admin/client/header/style.scss

51 lines
1022 B
SCSS

.woocommerce-layout__header {
background: $studio-white;
box-sizing: border-box;
padding: 0;
min-height: $header-height;
position: fixed;
width: 100%;
top: $adminbar-height;
z-index: 1001; /* on top of #wp-content-editor-tools */
&.is-scrolled {
box-shadow: $header-scroll-shadow;
}
@include breakpoint( '<782px' ) {
flex-flow: row wrap;
top: $adminbar-height-mobile;
}
.woocommerce-layout__header-breadcrumbs-wrapper {
display: flex;
justify-content: space-between;
flex-direction: row;
}
.woocommerce-layout__header-heading {
display: flex;
align-items: center;
padding: 0 0 0 $fallback-gutter-large;
padding: 0 0 0 $gutter-large;
flex: 1 auto;
height: $header-height;
line-height: $header-height;
background: $studio-white;
font-weight: 600;
font-size: 14px;
text-transform: capitalize;
}
}
.has-woocommerce-navigation .woocommerce-layout__header {
top: 0;
}
.woocommerce-page {
#contextual-help-link-wrap,
#screen-options-link-wrap {
margin-top: -1px;
}
}