mirror of
https://github.com/zotero/zotero.git
synced 2026-09-07 08:26:14 +00:00
Firefox doesn't use any native textareas anymore, so I guess they just removed/broke native textarea rendering.
7 lines
182 B
SCSS
7 lines
182 B
SCSS
// TODO: Fx140: Give this a border/shadow when not :focus-visible?
|
|
:where(textarea:not([no-native])) {
|
|
appearance: none;
|
|
border: none;
|
|
border-radius: 2px;
|
|
@include focus-ring;
|
|
}
|