Fixed missing check in checkbox when configuration opened in firefox

This commit is contained in:
Gunnar Skjold
2020-02-07 22:26:17 +01:00
parent deb2148e9a
commit 2e7b9e8e43
3 changed files with 8 additions and 28 deletions

View File

@@ -243,29 +243,7 @@ a {
input:not([type="image" i]) {
box-sizing: border-box;
}
input {
-webkit-writing-mode: horizontal-tb !important;
text-rendering: auto;
color: -internal-light-dark-color(black, white);
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: start;
-webkit-appearance: textfield;
background-color: -internal-light-dark-color(white, black);
-webkit-rtl-ordering: logical;
cursor: text;
margin: 0em;
font: 400 13.3333px Arial;
padding: 1px 0px;
border-width: 2px;
border-style: inset;
border-color: initial;
border-image: initial;
}
button, input {
overflow: visible;
}
@@ -275,6 +253,10 @@ button, input, optgroup, select, textarea {
font-size: inherit;
line-height: inherit;
}
input[type="radio"], input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
hr {
margin-top: 1rem;
margin-bottom: 1rem;
@@ -324,6 +306,3 @@ hr {
*, ::after, ::before {
box-sizing: border-box;
}
*, ::after, ::before {
box-sizing: border-box;
}