From e8fae98f45d0fb88728b63eaf02c24b9cc6bd632 Mon Sep 17 00:00:00 2001 From: Robin Whittleton Date: Sun, 1 Dec 2019 13:12:59 +0100 Subject: [PATCH] Fix search field styling in Safari MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not sure when this broke, but this disables the default search field style that has shown up. On linght mode it’s ugly but usable, but in dark mode it’s impossible to read your search terms. --- www/css/core.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/css/core.css b/www/css/core.css index f8fe39b2..2d3874ce 100644 --- a/www/css/core.css +++ b/www/css/core.css @@ -1495,7 +1495,8 @@ input[type="search"]{ color: var(--body-text); } -/* remove some styles from Chromium */ +/* remove some styles from Chromium / Webkit */ +input[type="search"], input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button{ -webkit-appearance: none;