diff --git a/frappe/public/less/desk.less b/frappe/public/less/desk.less index 26f80c1262..36ceed9bfa 100644 --- a/frappe/public/less/desk.less +++ b/frappe/public/less/desk.less @@ -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 } }