Fix red border in required inputs at Firefox fixes #916

old
Felquis 2016-10-31 14:10:40 -02:00
parent 6357d314b0
commit 879d0c2ce0
1 changed files with 5 additions and 0 deletions

View File

@ -56,6 +56,11 @@ input:not([type="checkbox"]):not([type="radio"]), button {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
// -- Remove firefox default style for required inputs
input[required]:-moz-ui-invalid {
box-shadow: none;
}
// -- Material design font sizes
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
@include typo-display-3($color-contrast: true);