2020-06-10 14:03:00 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-06-10 14:03:00 +02:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-06-10 14:39:28 +02:00
|
|
|
|
2024-09-09 15:57:16 +02: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 14:03:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This component expects the parent to specify a positive padding and
|
|
|
|
* width
|
|
|
|
*/
|
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
.mx_StyledRadioButton {
|
2024-03-05 05:25:47 +01:00
|
|
|
$radio-circle-color: var(--cpd-color-border-interactive-primary);
|
|
|
|
$active-radio-circle-color: var(--cpd-color-bg-accent-rest);
|
2020-06-10 14:03:00 +02:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
display: flex;
|
2020-06-23 16:04:39 +02:00
|
|
|
align-items: baseline;
|
2020-06-10 14:03:00 +02:00
|
|
|
flex-grow: 1;
|
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
> .mx_StyledRadioButton_content {
|
2020-06-10 14:03:00 +02:00
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
display: flex;
|
2020-06-26 12:24:07 +02:00
|
|
|
flex-direction: column;
|
2020-06-10 14:03:00 +02:00
|
|
|
|
2020-06-10 14:06:17 +02:00
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
2020-06-10 14:03:00 +02:00
|
|
|
}
|
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
.mx_StyledRadioButton_spacer {
|
2020-06-10 14:03:00 +02:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
height: $font-16px;
|
|
|
|
width: $font-16px;
|
|
|
|
}
|
|
|
|
|
2022-07-15 15:53:23 +02:00
|
|
|
input[type="radio"] {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Remove the OS's representation */
|
2020-06-10 14:03:00 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-06-10 14:37:09 +02:00
|
|
|
appearance: none;
|
2020-06-10 14:03:00 +02: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 15:39:29 +02:00
|
|
|
margin-left: 2px; /* For the highlight on focus */
|
2020-06-10 14:03:00 +02:00
|
|
|
|
2023-06-29 12:30:25 +02:00
|
|
|
border: 1px solid $radio-circle-color;
|
2020-06-10 14:03:00 +02:00
|
|
|
border-radius: $font-16px;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
height: $font-8px;
|
|
|
|
width: $font-8px;
|
|
|
|
|
|
|
|
border-radius: $font-8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-28 13:52:26 +02:00
|
|
|
&:focus-visible {
|
2020-07-28 17:08:25 +02:00
|
|
|
& + div {
|
|
|
|
@mixin unreal-focus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:24:11 +02:00
|
|
|
&:checked {
|
|
|
|
& + div {
|
|
|
|
border-color: $active-radio-circle-color;
|
2020-06-10 14:03:00 +02:00
|
|
|
|
2020-06-17 15:24:11 +02:00
|
|
|
& > div {
|
|
|
|
background: $active-radio-circle-color;
|
|
|
|
}
|
2020-06-10 14:03:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:24:11 +02: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 14:03:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-16 23:27:31 +02:00
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
.mx_StyledRadioButton_innerLabel {
|
2021-07-16 23:27:31 +02:00
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
}
|
2020-06-10 14:03:00 +02:00
|
|
|
}
|
2020-06-23 16:04:39 +02:00
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
.mx_StyledRadioButton_outlined {
|
2020-07-03 20:27:45 +02:00
|
|
|
border: 1px solid $input-darker-bg-color;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
.mx_StyledRadioButton_checked {
|
2024-03-05 05:25:47 +01:00
|
|
|
border-color: var(--cpd-color-bg-accent-rest);
|
2020-06-23 16:04:39 +02:00
|
|
|
}
|