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

69 lines
1.2 KiB
SCSS

/** @format */
.woocommerce-layout__header {
background: $white;
display: flex;
justify-content: space-between;
flex-direction: row;
box-sizing: border-box;
border-bottom: 1px solid $white;
padding: 0;
height: 80px;
position: fixed;
width: 100%;
top: 32px;
z-index: 99999; /* component-popover is 99990 */
&.is-scrolled {
box-shadow: 0 8px 8px 0 rgba(85, 93, 102, 0.3);
}
@include breakpoint( '<782px' ) {
top: 46px;
height: 50px;
flex-flow: row wrap;
}
@include breakpoint( '782px-960px' ) {
height: 60px;
}
.woocommerce-layout__header-breadcrumbs {
font-size: 13px;
font-weight: normal;
padding: 0 0 0 $fallback-gutter-large;
padding: 0 0 0 $gutter-large;
flex: 1 auto;
height: 50px;
line-height: 50px;
background: $white;
@include breakpoint( '782px-960px' ) {
height: 60px;
line-height: 60px;
}
@include breakpoint( '>960px' ) {
height: 80px;
line-height: 80px;
}
span + span::before {
content: ' / ';
color: $gray-text;
margin: 0 2px 0 2px;
}
a {
color: $woocommerce;
}
}
}
.woocommerce-page {
#contextual-help-link-wrap,
#screen-options-link-wrap {
margin-top: -1px;
}
}