Merge pull request #917 from felquis/fix-firefox-required-input

Fix red border in required inputs at Firefox fixes #916
old
Javi Velasco 2016-11-01 14:35:39 +01:00 committed by GitHub
commit 85eb7aa400
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);