Nur für FF mit GTK3:
Nachdem (zumindest teilweise) Eingabefelder, Buttons, etc. gar nicht mehr sichtbar sind, hilft folgende 'userContent.css' ganz brauchbar:
textbox {
-moz-appearance: none !important;
}
textarea,input {
border: 2px inset gray;
background-color: #eeeeee;
color: black;
-moz-appearance: none !important;
}
select {
border: 2px inset gray;
background-color: #eeeeee;
color: black;
-moz-appearance: none !important;
}
input[type="radio"] {
border: 2px inset gray ! important;
background-color: #eeeeee ! important;
color: ThreeDFace ! important;
-moz-appearance: none !important;
}
*|*::-moz-radio {
background-color: lightgray;
-moz-appearance: none !important;
}
button {
border: 2px outset gray;
background-color: #eeeeee;
color: black;
-moz-appearance: none !important;
}
body {
color: black;
display: block;
margin: 8px;
-moz-appearance: none !important;
}
Noch nicht ganz perfekt (Inhalt von Radio Buttons oder markierter Text wird noch nicht dauerhaft angezeigt) - aber insgesamt schon viel besser als vorher. Es schadet wohl nicht, sich so dauerhaft von GTK abzukoppeln.
Falls jemand noch weiter experimentiert und die restlichen Ungereimtheiten noch hinbekommt: das wäre Klasse - bitte dann hier posten. 😉