mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
42 lines
718 B
SCSS
42 lines
718 B
SCSS
|
|
// iOS Radio
|
|
// --------------------------------------------------
|
|
|
|
$radio-ios-foreground-color: get-color(primary, base) !default;
|
|
|
|
|
|
.radio[mode="ios"] {
|
|
|
|
.radio-icon {
|
|
position: relative;
|
|
width: 16px;
|
|
height: 21px;
|
|
}
|
|
|
|
&[aria-checked=true] .radio-icon {
|
|
border-color: $radio-ios-foreground-color;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
border: 2px solid $radio-ios-foreground-color;
|
|
top: 3px;
|
|
left: 7px;
|
|
width: 4px;
|
|
height: 10px;
|
|
border-left: none;
|
|
border-top: none;
|
|
content: '';
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
|
|
&[aria-checked=true] {
|
|
color: $radio-ios-foreground-color;
|
|
}
|
|
|
|
.input-label {
|
|
color: inherit;
|
|
}
|
|
|
|
}
|