2018-05-23 23:15:52 +00:00
|
|
|
/** @format */
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-date-picker {
|
2018-06-29 00:34:17 +00:00
|
|
|
width: 33.3%;
|
|
|
|
|
|
|
|
@include breakpoint( '<1100px' ) {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-05-28 10:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-date-picker__content {
|
2018-07-22 23:43:21 +00:00
|
|
|
> .components-popover__content {
|
2018-06-29 00:34:17 +00:00
|
|
|
width: 320px;
|
2018-05-28 10:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-mobile {
|
2018-07-22 23:43:21 +00:00
|
|
|
& > .components-popover__content {
|
2018-05-28 10:55:19 +00:00
|
|
|
width: 100%;
|
2018-05-28 10:55:19 +00:00
|
|
|
height: 100%;
|
2018-05-28 10:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.components-popover__header {
|
|
|
|
border: none;
|
|
|
|
height: 0;
|
|
|
|
}
|
2018-05-23 23:15:52 +00:00
|
|
|
|
2018-05-28 10:55:19 +00:00
|
|
|
.components-popover__close {
|
|
|
|
transform: translateY(22px);
|
2018-05-23 23:15:52 +00:00
|
|
|
}
|
|
|
|
|
2018-07-22 23:43:21 +00:00
|
|
|
.components-tab-panel__tab-content {
|
|
|
|
height: calc(100% - 38px);
|
|
|
|
}
|
|
|
|
}
|
2018-05-28 10:55:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-date-picker__tabs {
|
2018-07-22 23:43:21 +00:00
|
|
|
height: calc(100% - 42px);
|
|
|
|
|
2018-05-23 23:15:52 +00:00
|
|
|
.components-tab-panel__tabs {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 0 1em 1em 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-tab-panel__tab-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-05-28 10:55:19 +00:00
|
|
|
align-items: center;
|
2018-05-23 23:15:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-date-picker__tab {
|
2018-05-23 23:15:52 +00:00
|
|
|
outline: none;
|
2018-06-29 00:34:17 +00:00
|
|
|
border: 1px solid $woocommerce;
|
2018-05-23 23:15:52 +00:00
|
|
|
padding: 10px;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 5px 0 0 5px;
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-active {
|
2018-06-29 00:34:17 +00:00
|
|
|
background-color: $woocommerce;
|
2018-05-23 23:15:52 +00:00
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 2px solid lightseagreen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-date-picker__text {
|
2018-06-29 00:34:17 +00:00
|
|
|
@include font-size( 12 );
|
|
|
|
font-weight: 100;
|
2018-05-23 23:15:52 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
2018-07-22 23:43:21 +00:00
|
|
|
color: $core-grey-dark-300;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 1em;
|
|
|
|
background-color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-date-picker__content-controls {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
background-color: $white;
|
|
|
|
|
|
|
|
&.is-custom {
|
|
|
|
border-top: 1px solid $core-grey-light-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-sticky-bottom {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-date-picker__content-controls-btns {
|
|
|
|
padding-top: 1em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-date-picker__content-controls-btn {
|
|
|
|
justify-content: center;
|
|
|
|
width: 50%;
|
|
|
|
margin: 0 1em;
|
2018-05-28 10:55:19 +00:00
|
|
|
}
|