2020-06-10 20:03:00 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-06-10 20:03:00 +08:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-06-10 20:39:28 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-06-10 20:03:00 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This component expects the parent to specify a positive padding and
|
|
|
|
* width
|
|
|
|
*/
|
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton {
|
2024-03-05 12:25:47 +08:00
|
|
|
$radio-circle-color: var(--cpd-color-border-interactive-primary);
|
|
|
|
$active-radio-circle-color: var(--cpd-color-bg-accent-rest);
|
2020-06-10 20:03:00 +08:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
display: flex;
|
2020-06-23 22:04:39 +08:00
|
|
|
align-items: baseline;
|
2020-06-10 20:03:00 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
> .mx_StyledRadioButton_content {
|
2020-06-10 20:03:00 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
display: flex;
|
2020-06-26 18:24:07 +08:00
|
|
|
flex-direction: column;
|
2020-06-10 20:03:00 +08:00
|
|
|
|
2020-06-10 20:06:17 +08:00
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
2020-06-10 20:03:00 +08:00
|
|
|
}
|
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton_spacer {
|
2020-06-10 20:03:00 +08:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
height: $font-16px;
|
|
|
|
width: $font-16px;
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
input[type="radio"] {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Remove the OS's representation */
|
2020-06-10 20:03:00 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-06-10 20:37:09 +08:00
|
|
|
appearance: none;
|
2020-06-10 20:03:00 +08:00
|
|
|
|
|
|
|
+ div {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: $font-16px;
|
|
|
|
width: $font-16px;
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-left: 2px; /* For the highlight on focus */
|
2020-06-10 20:03:00 +08:00
|
|
|
|
2023-06-29 18:30:25 +08:00
|
|
|
border: 1px solid $radio-circle-color;
|
2020-06-10 20:03:00 +08:00
|
|
|
border-radius: $font-16px;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
height: $font-8px;
|
|
|
|
width: $font-8px;
|
|
|
|
|
|
|
|
border-radius: $font-8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-28 19:52:26 +08:00
|
|
|
&:focus-visible {
|
2020-07-28 23:08:25 +08:00
|
|
|
& + div {
|
|
|
|
@mixin unreal-focus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 21:24:11 +08:00
|
|
|
&:checked {
|
|
|
|
& + div {
|
|
|
|
border-color: $active-radio-circle-color;
|
2020-06-10 20:03:00 +08:00
|
|
|
|
2020-06-17 21:24:11 +08:00
|
|
|
& > div {
|
|
|
|
background: $active-radio-circle-color;
|
|
|
|
}
|
2020-06-10 20:03:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 21:24:11 +08:00
|
|
|
&:disabled {
|
|
|
|
& + div,
|
|
|
|
& + div + span {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + div {
|
|
|
|
border-color: $radio-circle-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:checked:disabled {
|
|
|
|
& + div > div {
|
|
|
|
background-color: $radio-circle-color;
|
2020-06-10 20:03:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-17 05:27:31 +08:00
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton_innerLabel {
|
2021-07-17 05:27:31 +08:00
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
}
|
2020-06-10 20:03:00 +08:00
|
|
|
}
|
2020-06-23 22:04:39 +08:00
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton_outlined {
|
2020-07-04 02:27:45 +08:00
|
|
|
border: 1px solid $input-darker-bg-color;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton_checked {
|
2024-03-05 12:25:47 +08:00
|
|
|
border-color: var(--cpd-color-bg-accent-rest);
|
2020-06-23 22:04:39 +08:00
|
|
|
}
|