2018-05-17 04:44:58 +00:00
|
|
|
/** @format */
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-segmented-selection {
|
2018-05-17 04:44:58 +00:00
|
|
|
width: 100%;
|
2018-05-28 10:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-segmented-selection__container {
|
|
|
|
width: 100%;
|
2018-05-17 04:44:58 +00:00
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
display: grid;
|
2018-05-23 23:15:52 +00:00
|
|
|
border-top: 1px solid $gray;
|
|
|
|
border-bottom: 1px solid $gray;
|
2018-05-17 04:44:58 +00:00
|
|
|
grid-gap: 1px;
|
|
|
|
background-color: $gray;
|
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-segmented-selection__label {
|
2018-05-17 04:44:58 +00:00
|
|
|
background-color: $white;
|
|
|
|
padding: 1em;
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
2018-05-23 23:15:52 +00:00
|
|
|
height: 100%;
|
2018-05-17 04:44:58 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-segmented-selection__input {
|
2018-05-17 04:44:58 +00:00
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: -9999px;
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
&:checked + label .woocommerce-segmented-selection__label {
|
2018-05-17 04:44:58 +00:00
|
|
|
background-color: $gray-light-10;
|
|
|
|
padding-left: calc(1em + 20px);
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
background-color: #444;
|
|
|
|
border-radius: 4px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-20px, -50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
&:focus + label .woocommerce-segmented-selection__label {
|
2018-05-17 04:44:58 +00:00
|
|
|
outline: 1px solid lightseagreen;
|
|
|
|
}
|
|
|
|
}
|