mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
47 lines
551 B
SCSS
47 lines
551 B
SCSS
|
|
// Checkbox
|
|
// --------------------------------------------------
|
|
|
|
|
|
.checkbox {
|
|
display: block;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.checkbox input {
|
|
position: relative;
|
|
left: -9999px;
|
|
}
|
|
|
|
.checkbox-on {
|
|
display: none;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.checkbox-off {
|
|
display: block;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.checkbox[aria-checked=true] {
|
|
|
|
.checkbox-on {
|
|
display: block;
|
|
}
|
|
|
|
.checkbox-off {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
|
|
.checkbox[aria-disabled=true] {
|
|
opacity: 0.5;
|
|
color: gray;
|
|
|
|
.media-checkbox {
|
|
color: inherit;
|
|
}
|
|
}
|