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
|
|
|
|
2020-06-10 14:03:00 +02:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2020-06-10 14:39:28 +02:00
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
2020-06-10 14:03:00 +02:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This component expects the parent to specify a positive padding and
|
|
|
|
* width
|
|
|
|
*/
|
|
|
|
|
2021-11-04 13:57:38 +01:00
|
|
|
.mx_StyledRadioButton {
|
2021-11-10 10:34:21 +01:00
|
|
|
$radio-circle-color: $quaternary-content;
|
2021-11-11 14:37:29 +01:00
|
|
|
$active-radio-circle-color: $accent;
|
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
|
|
|
|
|
|
|
border: $font-1-5px solid $radio-circle-color;
|
|
|
|
border-radius: $font-16px;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
height: $font-8px;
|
|
|
|
width: $font-8px;
|
|
|
|
|
|
|
|
border-radius: $font-8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 17:08:25 +02:00
|
|
|
&.focus-visible {
|
|
|
|
& + 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 {
|
2021-11-11 14:37:29 +01:00
|
|
|
border-color: $accent;
|
2020-06-23 16:04:39 +02:00
|
|
|
}
|