refactor: Remove un-wanted code

This commit is contained in:
Suraj Shetty 2020-07-19 18:18:29 +05:30
parent 4d25520a62
commit 3787c4eb28

View file

@ -845,31 +845,11 @@ input[type="checkbox"] {
height: 100%;
}
// mozilla doesn't support
// Firefox doesn't support
// pseudo elements on checkbox
@-moz-document url-prefix() {
@supports (-moz-appearance: none) or (-ms-ime-align:auto) {
input[type="checkbox"] {
visibility: visible;
left: 0;
height: 12px !important
}
}
@supports (-moz-appearance: none) {
input[type="checkbox"] {
visibility: visible;
left: 0;
height: 12px !important
}
}
// edge doesn't support pseudo elements on checkbox
//Microsoft Edge Browser 12+ (All)
@supports (-ms-ime-align:auto) {
input[type="checkbox"] {
visibility: visible;
left: 0;
height: 12px !important
height: @checkbox-height !important
}
}