fix: Text area css issue prevented scrolling, fixes #8797

This commit is contained in:
Torkel Ödegaard 2017-07-06 09:36:57 +02:00
parent 9341412acc
commit e5b499a958

View File

@ -117,6 +117,11 @@ $gf-form-margin: 0.25rem;
overflow: hidden;
text-overflow: ellipsis;
// text areas should be scrollable
@at-root textarea#{&} {
overflow: auto;
}
// Unstyle the caret on `<select>`s in IE10+.
&::-ms-expand {
background-color: transparent;