Browse Source

#2374, Dont set height of textarea with rows set

pull/2390/head
jlukic 9 years ago
parent
commit
f2623de766
1 changed files with 4 additions and 3 deletions
  1. 7
      src/definitions/collections/form.less

7
src/definitions/collections/form.less

@ -142,7 +142,6 @@
}
/* Text Area */
.ui.textarea,
.ui.form textarea {
margin: 0em;
-webkit-appearance: none;
@ -158,11 +157,13 @@
box-shadow: @inputBoxShadow;
transition: @textAreaTransition;
font-size: @textAreaFontSize;
line-height: @textAreaLineHeight;
resize: @textAreaResize;
}
.ui.form textarea:not([rows]) {
height: @textAreaHeight;
min-height: @textAreaMinHeight;
max-height: @textAreaMaxHeight;
line-height: @textAreaLineHeight;
resize: @textAreaResize;
}
.ui.form textarea,

Loading…
Cancel
Save