zotero/scss/components/_input.scss
abaevbog 2f262c943c
Additional fixes to form element appearance on Linux (#5503)
Followup to 06ef9ab

Fix <html> based form elements, in citation dialog item popover.
Set slightly smaller default border width of buttons.
2025-08-21 11:48:53 +03:00

15 lines
266 B
SCSS

input {
@media (-moz-platform: linux) {
// fx140 form element styling fix
&:not([type="checkbox"]) {
appearance: none;
}
border-radius: 5px;
padding: .3em .5em;
border: 1px solid ThreeDShadow;
&[type="button"] {
padding: .3em 1.5em;
}
}
}