hplush / slowreader

Web app to combine feeds from social networks and RSS and to help read more meaningful and deep content
https://dev.slowreader.app
GNU Affero General Public License v3.0
161 stars 37 forks source link

Fix `<Select>` in Safari #121

Closed ai closed 8 months ago

ai commented 8 months ago

Seems like we have a problem with select. In Firefox it shows drop-down list on click, but in Safari no.

https://github.com/hplush/slowreader/assets/19343/9c5c75fb-8175-423a-a441-e7e8cb66ee15

Konfuze commented 8 months ago

Found out that problem is in the default appearance of select in Safari, it's height not changes even if we set height: 1000px

If we reset appearance by setting appearance: none, it affects the font:

Screenshot 2024-03-27 at 17 46 39

So we need to add font: revert to make it default:

Screenshot 2024-03-27 at 17 48 06

I'll make fix for that

ai commented 8 months ago

Great, thanks!