fix focusring not appearing on linux (#4365)

-moz-accent-color variable doesn't seem to exist on linux.
Use --color-accent as the focus border, same as what is
already done in the reader.

Fixes: #4340
This commit is contained in:
abaevbog 2024-07-09 21:41:13 -07:00 committed by GitHub
parent 32b92c0205
commit b0fa4415ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,7 @@
} }
@media (-moz-platform: linux) { @media (-moz-platform: linux) {
--color-accent: SelectedItem; --color-accent: SelectedItem;
--color-focus-border: -moz-accent-color; --color-focus-border: var(--color-accent);
--width-focus-border: 2px; --width-focus-border: 2px;
} }
// Only used on Windows // Only used on Windows