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

pull/8808/head
Torkel Ödegaard 8 years ago
parent 9341412acc
commit e5b499a958
  1. 5
      public/sass/components/_gf-form.scss

@ -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;

Loading…
Cancel
Save