mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
14 lines
191 B
CSS
14 lines
191 B
CSS
input, textarea, select, button,
|
|
*:optional {
|
|
visibility: hidden;
|
|
}
|
|
|
|
input[required]:required {
|
|
visibility: visible;
|
|
}
|
|
|
|
/* Override the default style. */
|
|
:invalid {
|
|
box-shadow: none;
|
|
}
|