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.
This commit is contained in:
Soheb 2021-01-08 20:26:29 +00:00 committed by GitHub
parent e7b448a282
commit 770c4d3630
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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) {