From 85167dd437940d7daceaad0bc2df3a1f68b4f633 Mon Sep 17 00:00:00 2001 From: mtmail Date: Fri, 28 Nov 2025 12:02:35 +0100 Subject: [PATCH] tone down text color of form placeholder text (#318) --- src/global_style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/global_style.css b/src/global_style.css index 2fa86e1..8cb2084 100644 --- a/src/global_style.css +++ b/src/global_style.css @@ -9,6 +9,11 @@ a { text-decoration: none } a:hover { text-decoration: underline; } a.btn:hover { text-decoration: none; } +.form-control::placeholder { + color: revert; + font-style: italic; +} + html[data-bs-theme=dark] img.mapicon { /* invert the image colors */ filter: invert(1) hue-rotate(180deg); -- 2.39.5