mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-26 08:13:34 +08:00
16 lines
229 B
SCSS
16 lines
229 B
SCSS
|
|
// Radio
|
|
// --------------------------------------------------
|
|
|
|
|
|
.radio {
|
|
cursor: pointer;
|
|
@include user-select-none();
|
|
}
|
|
|
|
.radio[aria-disabled=true] {
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
color: $subdued-text-color;
|
|
}
|