Skip to content

Instantly share code, notes, and snippets.

View LucasWiemers's full-sized avatar

Lucas Wiemers LucasWiemers

View GitHub Profile

Keybase proof

I hereby claim:

  • I am lucaswiemers on github.
  • I am lwiemers (https://keybase.io/lwiemers) on keybase.
  • I have a public key ASDRX1VTJhFl4rKiCVInyCxHY1RjqoizDqOgsXdiKNA2iwo

To claim this, I am signing this object:

@LucasWiemers
LucasWiemers / userContent.css
Last active March 25, 2019 22:27
Firefox userContent.css to fix color issues in input fields with dark themes. Place this file in ~/.mozilla/firefox/$PROFILE.default/chrome/
input:not([type='checkbox']):not([type='radio']),
textarea,
select {
border: 1px solid #ddd;
background-color: white;
border-radius: 2px;
padding: 0.4rem;
color: black;
-moz-appearance: none !important;
}