2020-11-23 16:30:27 +00:00
|
|
|
.wc-block-components-radio-control__option {
|
|
|
|
@include reset-typography();
|
|
|
|
display: block;
|
2021-02-09 08:10:45 +00:00
|
|
|
margin: em($gap) 0;
|
|
|
|
padding: 0 0 0 em($gap-largest);
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2020-11-23 16:30:27 +00:00
|
|
|
}
|
2019-12-16 22:13:41 +00:00
|
|
|
|
2020-11-23 16:30:27 +00:00
|
|
|
.wc-block-components-radio-control__option-layout {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout {
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-components-radio-control__label-group,
|
|
|
|
.wc-block-components-radio-control__description-group {
|
|
|
|
display: table-row;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-components-radio-control__secondary-label,
|
|
|
|
.wc-block-components-radio-control__secondary-description {
|
|
|
|
text-align: right;
|
|
|
|
min-width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-components-radio-control__label,
|
|
|
|
.wc-block-components-radio-control__secondary-label {
|
|
|
|
// Currently, max() CSS function calls need to be wrapped with unquote.
|
|
|
|
// See: https://github.com/sass/sass/issues/2378#issuecomment-367490840
|
2021-01-12 09:09:47 +00:00
|
|
|
// These values should be the same as the control input height.
|
2022-03-28 13:00:20 +00:00
|
|
|
line-height: string.unquote("max(1.5rem, 24px)");
|
2020-11-23 16:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-components-radio-control__description,
|
|
|
|
.wc-block-components-radio-control__secondary-description {
|
2021-10-11 13:18:32 +00:00
|
|
|
@include font-size(small);
|
2020-11-23 16:30:27 +00:00
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extra class for specificity.
|
|
|
|
.wc-block-components-radio-control {
|
|
|
|
.wc-block-components-radio-control__input {
|
|
|
|
appearance: none;
|
2021-01-12 09:09:47 +00:00
|
|
|
background: #fff;
|
|
|
|
border: 2px solid $input-border-gray;
|
2020-11-23 16:30:27 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
2021-01-12 09:09:47 +00:00
|
|
|
height: em(24px); // =1.5rem
|
|
|
|
min-height: 24px;
|
|
|
|
min-width: 24px;
|
|
|
|
width: em(24px);
|
|
|
|
// The code belows centers the input vertically.
|
2020-11-23 16:30:27 +00:00
|
|
|
position: absolute;
|
2021-01-12 09:09:47 +00:00
|
|
|
left: 0;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2020-11-23 16:30:27 +00:00
|
|
|
|
|
|
|
&:checked::before {
|
2021-01-12 09:09:47 +00:00
|
|
|
background: #000;
|
2020-11-23 16:30:27 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
content: "";
|
|
|
|
display: block;
|
2021-01-12 09:09:47 +00:00
|
|
|
height: em(12px);
|
2020-11-23 16:30:27 +00:00
|
|
|
left: 50%;
|
|
|
|
margin: 0;
|
2021-01-12 09:09:47 +00:00
|
|
|
min-height: 12px;
|
|
|
|
min-width: 12px;
|
2020-11-23 16:30:27 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2021-01-12 09:09:47 +00:00
|
|
|
width: em(12px);
|
2020-11-23 16:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-dark-controls & {
|
|
|
|
border-color: $controls-border-dark;
|
2021-01-12 09:09:47 +00:00
|
|
|
background-color: $input-background-dark;
|
2020-11-23 16:30:27 +00:00
|
|
|
|
|
|
|
&:checked::before {
|
|
|
|
background: $input-text-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-twentytwentyone {
|
|
|
|
.wc-block-components-radio-control .wc-block-components-radio-control__input {
|
|
|
|
&:checked {
|
|
|
|
border-width: 2px;
|
2020-11-23 19:43:36 +00:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: var(--form--color-text);
|
|
|
|
}
|
2020-11-23 16:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|