From 770c4d36307a4484720302c0072cb113abf60b1b Mon Sep 17 00:00:00 2001 From: Soheb Date: Fri, 8 Jan 2021 20:26:29 +0000 Subject: [PATCH] Fix themeing for all browsers Really noticable on iOS, but ensuring all browsers get the love. The buttons and input aren't as flat as they usually are on my desktop Firefox. This patch should sort that out. --- static/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/style.css b/static/style.css index 3ac677d..c37c8ba 100644 --- a/static/style.css +++ b/static/style.css @@ -205,6 +205,8 @@ select, #search { padding: 0 15px; height: 40px; appearance: none; + -webkit-appearance: none; + -moz-appearance: none; border-radius: 5px 0px 0px 5px; } @@ -659,6 +661,11 @@ input[type="submit"]:hover { color: var(--accent); } margin-top: 20px; } +input[type="submit"] { + appearance: none; + -webkit-appearance: none; + -moz-appearance: none; +} /* Markdown */ .md > *:not(:first-child) {