2017-02-08 11:43:28 -05:00
|
|
|
// ==========================================================================
|
|
|
|
|
// Generic / Forms
|
|
|
|
|
// ==========================================================================
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2015-07-31 14:24:26 -04:00
|
|
|
input,
|
|
|
|
|
select,
|
|
|
|
|
textarea {
|
2017-04-27 16:00:45 -04:00
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
outline: 0;
|
|
|
|
|
border: 0;
|
2016-08-22 10:30:46 -04:00
|
|
|
border-radius: 0;
|
2017-04-27 16:00:45 -04:00
|
|
|
background: none transparent;
|
|
|
|
|
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 {
|
2016-08-22 10:30:46 -04:00
|
|
|
text-transform: none;
|
2015-07-31 14:24:26 -04:00
|
|
|
|
2016-08-22 10:30:46 -04:00
|
|
|
&::-ms-expand {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2015-07-31 14:24:26 -04:00
|
|
|
|
2016-08-22 10:30:46 -04:00
|
|
|
&::-ms-value {
|
|
|
|
|
background: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
2015-07-31 14:24:26 -04:00
|
|
|
|
2022-05-17 12:08:01 +02:00
|
|
|
// // Remove Firefox :focus dotted outline, breaks color inherit
|
|
|
|
|
// // &:-moz-focusring {
|
|
|
|
|
// // 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 {
|
2016-08-22 10:30:46 -04:00
|
|
|
overflow: auto;
|
|
|
|
|
resize: vertical;
|
2015-03-24 12:56:56 -04:00
|
|
|
}
|