Commit 3393e638 by Arthur Barrett

set a default height on the commentary textbox to show 5 lines of text

parent 2ed7394f
......@@ -869,7 +869,14 @@ section.problem {
.tag-status, .tag { padding: .25em .5em; }
}
}
textarea.comment { width: 100%; }
textarea.comment {
$num-lines-to-show: 5;
$line-height: 1.4em;
width: 100%;
padding: .375em .75em;
line-height: $line-height;
height: ($line-height * $num-lines-to-show) + .375em;
}
.answer-annotation { display: block; margin: 0; }
/* for debugging the input value field. enable the debug flag on the inputtype */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment