mirror of
https://github.com/zotero/zotero.git
synced 2026-09-09 22:31:05 +00:00
Followup to 06ef9ab
Fix <html> based form elements, in citation dialog item popover.
Set slightly smaller default border width of buttons.
15 lines
266 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|