Add missing overflow

This commit is contained in:
Michal Čihař 2011-06-02 15:48:34 +02:00
parent 12f1bb773e
commit 469624c23d
2 changed files with 2 additions and 0 deletions

View File

@ -1780,6 +1780,7 @@ fieldset .disabled-field td {
.CodeMirror-scroll {
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
overflow: auto;
}
.CodeMirror-gutter {

View File

@ -2123,6 +2123,7 @@ fieldset .disabled-field td {
}
.CodeMirror-scroll {
overflow: auto;
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
}