Compliment '-webkit-appearance'
with 'appearance', as it is
non-standard and has since
been succeeded by 'appearance',
accepted by all baseline browsers.
Future consideration to then
remove '-webkit-appearance'.
Signed-off-by: Joshua Criss <redacted>
font-size: 100%;
background: none;
outline: none;
- -webkit-appearance: none;
+ -webkit-appearance: none; /* nonstandard, should remove in future */
+ appearance: none;
}
html {
input[type="radio"] {
--bd-color: var(--main-dark-color);
--fg-color: var(--main-dark-color);
-
+ -webkit-appearance: none; /* nonstandard, should remove in future */
appearance: none;
- -webkit-appearance: none;
width: 1em;
height: 1em;
color: var(--fg-color);
select {
padding: .1rem 0;
- -webkit-appearance: menulist;
+ -webkit-appearance: menulist; /* nonstandard, should remove in future */
+ appearance: menulist;
}
textarea {