mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
16 lines
260 B
SCSS
16 lines
260 B
SCSS
|
|
// Checkbox
|
|
// --------------------------------------------------
|
|
|
|
|
|
ion-checkbox {
|
|
cursor: pointer;
|
|
@include user-select-none();
|
|
}
|
|
|
|
ion-checkbox[aria-disabled=true] .item-inner > * {
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
color: $subdued-text-color;
|
|
}
|