Created
April 16, 2016 09:28
-
-
Save alxlion/ba88ee090c3a10120d3fd61ea12dac12 to your computer and use it in GitHub Desktop.
Fix dark input Firefox
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
input:not(.urlbar-input):not(.textbox-input):not(.form-control):not([type='checkbox']) | |
:not(#search_form_input):not(#search_form_input_clear):not(#search_button):not(#search_form_input_homepage) { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} | |
#downloads-indicator-counter { | |
color: white; | |
} | |
textarea { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} | |
select { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Select arrow seem be hidden, to fix that replace
by
Also you can replace
background-color: white
tobackground-color: transparent
which is more convenientHere my fork