2018-05-14 13:41:30 +00:00
|
|
|
/** @format */
|
|
|
|
|
2018-06-28 13:52:45 +00:00
|
|
|
.woocommerce-layout__header {
|
2018-05-14 13:41:30 +00:00
|
|
|
background: $white;
|
2018-05-10 18:35:55 +00:00
|
|
|
display: flex;
|
2018-05-18 17:31:08 +00:00
|
|
|
justify-content: space-between;
|
2018-05-10 18:35:55 +00:00
|
|
|
flex-direction: row;
|
|
|
|
box-sizing: border-box;
|
2018-07-09 15:46:31 +00:00
|
|
|
border-bottom: 1px solid $white;
|
2018-07-06 12:40:05 +00:00
|
|
|
padding: 0px;
|
2018-06-29 15:20:08 +00:00
|
|
|
height: 80px;
|
2018-06-28 13:52:45 +00:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
top: 32px;
|
2018-08-07 19:45:48 +00:00
|
|
|
z-index: 99999; /* component-popover is 99990 */
|
2018-05-10 18:35:55 +00:00
|
|
|
|
2018-07-09 15:46:31 +00:00
|
|
|
&.is-scrolled {
|
2018-07-13 19:19:54 +00:00
|
|
|
box-shadow: 0 8px 8px 0 rgba(85, 93, 102, 0.3);
|
2018-07-09 15:46:31 +00:00
|
|
|
}
|
|
|
|
|
2018-06-29 15:20:08 +00:00
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
top: 46px;
|
2018-07-13 19:19:54 +00:00
|
|
|
height: 50px;
|
2018-07-06 12:40:05 +00:00
|
|
|
flex-flow: row wrap;
|
2018-06-29 15:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( '782px-1100px' ) {
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
|
2018-06-28 13:52:45 +00:00
|
|
|
.woocommerce-layout__header-breadcrumbs {
|
2018-05-10 18:35:55 +00:00
|
|
|
font-size: 13px;
|
2018-06-26 14:49:42 +00:00
|
|
|
font-weight: normal;
|
2018-09-11 07:27:13 +00:00
|
|
|
padding: 0 0 0 $fallback-gutter-large;
|
2018-08-08 22:11:54 +00:00
|
|
|
padding: 0 0 0 $gutter-large;
|
2018-07-06 12:40:05 +00:00
|
|
|
flex: 1 auto;
|
2018-07-09 15:46:31 +00:00
|
|
|
height: 50px;
|
2018-07-13 19:19:54 +00:00
|
|
|
line-height: 50px;
|
2018-07-09 15:46:31 +00:00
|
|
|
background: $white;
|
2018-07-06 12:40:05 +00:00
|
|
|
|
|
|
|
@include breakpoint( '782px-1100px' ) {
|
2018-07-13 19:19:54 +00:00
|
|
|
height: 60px;
|
|
|
|
line-height: 60px;
|
2018-07-06 12:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( '>1100px' ) {
|
2018-07-13 19:19:54 +00:00
|
|
|
height: 80px;
|
|
|
|
line-height: 80px;
|
2018-07-09 15:46:31 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 18:35:55 +00:00
|
|
|
span + span::before {
|
|
|
|
content: ' / ';
|
2018-05-14 13:41:30 +00:00
|
|
|
color: $gray-text;
|
2018-06-26 14:49:42 +00:00
|
|
|
margin: 0 2px 0 2px;
|
2018-05-10 18:35:55 +00:00
|
|
|
}
|
2018-07-06 12:40:05 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $woocommerce;
|
|
|
|
}
|
2018-05-10 18:35:55 +00:00
|
|
|
}
|
2018-05-14 13:41:30 +00:00
|
|
|
}
|