horizon/openstack_dashboard/themes/material/static/horizon/components/_checkboxes.scss

31 lines
527 B
SCSS

//
// Custom Material Checkboxes
// --------------------------------------------------
.themable-checkbox {
input[type=checkbox] {
// The checkbox - Unchecked
& + label {
@extend .mdi-checkbox-blank-outline;
&:before {
@extend .mdi;
content: "\F131";
font-size: $font-size-h5;
}
}
// The checkbox - Checked
&:checked + label {
@extend .mdi-checkbox-marked;
&:before {
content: "\F132";
color: $brand-primary;
}
}
}
}