mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
25 lines
330 B
SCSS
25 lines
330 B
SCSS
|
|
// Checkbox
|
|
// --------------------------------------------------
|
|
|
|
|
|
.checkbox {
|
|
position: relative;
|
|
cursor: pointer;
|
|
@include user-select-none();
|
|
}
|
|
|
|
.checkbox input {
|
|
display: none;
|
|
}
|
|
|
|
.checkbox .input-label {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.checkbox[aria-disabled=true] {
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
color: gray;
|
|
}
|