Last active
September 26, 2017 02:11
-
-
Save cadecairos/e1a22fc31faaa813693a to your computer and use it in GitHub Desktop.
stylish stylesheet that fixes input elements in firefox when using a dark GTK theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url(http://www.w3.org/1999/xhtml); | |
html input, | |
html textarea, | |
html select, | |
html button, | |
html input[type="reset"], | |
html input[type="button"], | |
html input[type="submit"], | |
html input[type="radio"], | |
html input[type="checkbox"] { | |
background-color: inherit; | |
color: #333333; | |
-moz-appearance: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment