From b47c043699dd3b1c036bca3b5e9080a181a83ec2 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 6 Feb 2023 00:05:43 +0800 Subject: [PATCH] Fix select field color bug on Windows It shows as white text on white background on Windows 10 or 11 https://mastodon.social/users/cheeaun/statuses/109812923100158393 --- src/components/compose.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/compose.css b/src/components/compose.css index 5bdb8cd3..c33e31be 100644 --- a/src/components/compose.css +++ b/src/components/compose.css @@ -164,7 +164,7 @@ left: -100vw !important; } #compose-container .toolbar-button select { - background-color: transparent; + background-color: inherit; border: 0; padding: 0 0 0 8px; }