Przeglądaj źródła

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

Torkel Ödegaard 8 lat temu
rodzic
commit
e5b499a958
1 zmienionych plików z 5 dodań i 0 usunięć
  1. 5 0
      public/sass/components/_gf-form.scss

+ 5 - 0
public/sass/components/_gf-form.scss

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