mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
17 lines
274 B
SCSS
17 lines
274 B
SCSS
@import "../../globals.core";
|
|
|
|
// Checkbox
|
|
// --------------------------------------------------
|
|
|
|
|
|
ion-checkbox {
|
|
cursor: pointer;
|
|
@include user-select-none();
|
|
}
|
|
|
|
ion-checkbox[aria-disabled=true] {
|
|
opacity: 0.5;
|
|
color: $subdued-text-color;
|
|
pointer-events: none;
|
|
}
|