mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
checkbox
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
|
||||
// Checkbox
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
.checkbox-on {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.checkbox-off {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.checkbox[aria-checked=true] {
|
||||
|
||||
.checkbox-on {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.checkbox-off {
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user