Skip to content

Instantly share code, notes, and snippets.

@madeindjs
Forked from alxlion/style.css
Last active May 10, 2017 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madeindjs/648a4ea44bbf39b447016c9949217bf7 to your computer and use it in GitHub Desktop.
Save madeindjs/648a4ea44bbf39b447016c9949217bf7 to your computer and use it in GitHub Desktop.
Fix dark input Firefox
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: transparent;
color: black;
}
#downloads-indicator-counter {
color: white;
}
textarea {
-moz-appearance: none !important;
background-color: transparent;
color: black;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
background: transparent;
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
background-repeat: no-repeat;
background-position-x: 100%;
background-position-y: -2px;
border: 1px solid #dfdfdf;
margin-right: 2rem;
padding-right: 2rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment