mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
22 lines
353 B
SCSS
22 lines
353 B
SCSS
|
|
// iOS Checkbox
|
|
// --------------------------------------------------
|
|
|
|
$checkbox-ios-color: #007aff;
|
|
|
|
|
|
.checkbox[mode="ios"] {
|
|
|
|
.media-checkbox {
|
|
height: 20px;
|
|
min-width: 20px;
|
|
color: $checkbox-ios-color;
|
|
background-color: $checkbox-ios-color;
|
|
}
|
|
|
|
&[aria-checked=false] .media-checkbox {
|
|
background-color: red;
|
|
}
|
|
|
|
}
|