Files
OfficialSite/assets/styles/generic/_form.scss

43 lines
811 B
SCSS
Raw Normal View History

// ==========================================================================
// Form resets
// ==========================================================================
2015-07-31 14:24:26 -04:00
input,
select,
textarea {
display: block;
margin: 0;
padding: 0;
width: 100%;
outline: 0;
border: 0;
border-radius: 0;
color: inherit;
font: inherit;
line-height: normal;
appearance: none;
2015-03-24 12:56:56 -04:00
}
2015-07-31 14:24:26 -04:00
select {
text-transform: none;
2015-07-31 14:24:26 -04:00
&::-ms-expand {
display: none;
}
2015-07-31 14:24:26 -04:00
&::-ms-value {
background: none;
color: inherit;
}
2015-07-31 14:24:26 -04:00
// Remove Firefox :focus dotted outline, breaks color inherit
/*&:-moz-focusring {
2015-07-31 14:24:26 -04:00
color: transparent;
text-shadow: 0 0 0 #000000; // Text :focus color
}*/
2015-03-24 12:56:56 -04:00
}
2015-07-31 14:24:26 -04:00
textarea {
overflow: auto;
resize: vertical;
2015-03-24 12:56:56 -04:00
}