Rename mx_RadioButton to mx_StyledRadioButton to match class name (#7083)

This commit is contained in:
Andy Balaam 2021-11-04 12:57:38 +00:00 committed by GitHub
parent 7a203461f7
commit 9c8e1d32e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 47 additions and 47 deletions

View file

@ -19,7 +19,7 @@ limitations under the License.
* width
*/
.mx_RadioButton {
.mx_StyledRadioButton {
$radio-circle-color: $muted-fg-color;
$active-radio-circle-color: $accent-color;
position: relative;
@ -28,7 +28,7 @@ limitations under the License.
align-items: baseline;
flex-grow: 1;
> .mx_RadioButton_content {
> .mx_StyledRadioButton_content {
flex-grow: 1;
display: flex;
@ -38,7 +38,7 @@ limitations under the License.
margin-right: 8px;
}
.mx_RadioButton_spacer {
.mx_StyledRadioButton_spacer {
flex-shrink: 0;
flex-grow: 0;
@ -113,18 +113,18 @@ limitations under the License.
}
}
.mx_RadioButton_innerLabel {
.mx_StyledRadioButton_innerLabel {
display: flex;
position: relative;
top: 4px;
}
}
.mx_RadioButton_outlined {
.mx_StyledRadioButton_outlined {
border: 1px solid $input-darker-bg-color;
border-radius: 8px;
}
.mx_RadioButton_checked {
.mx_StyledRadioButton_checked {
border-color: $accent-color;
}