Fix #16223 - set min height and width instead of a fixed value

Signed-off-by: Yogesh Ojha <yogesh.ojha11@gmail.com>
This commit is contained in:
Yogesh Ojha 2020-06-28 10:37:10 +05:30 committed by William Desportes
parent b41e17124b
commit 43a521462d
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@ $textarea-rows: 15;
}
.insertRowTable .CodeMirror {
height: ceil($textarea-rows * 0.6em);
width: ceil($textarea-cols * 0.6em);
min-height: ceil($textarea-rows * 0.6em);
min-width: ceil($textarea-cols * 0.6em);
border: 1px solid #a9a9a9;
}

View File

@ -24,8 +24,8 @@ $textarea-rows: 15 !default;
}
.insertRowTable .CodeMirror {
height: ceil($textarea-rows * 0.6em);
width: ceil($textarea-cols * 0.6em);
min-height: ceil($textarea-rows * 0.6em);
min-width: ceil($textarea-cols * 0.6em);
}
#pma_console .CodeMirror-gutters {

View File

@ -11,8 +11,8 @@ $textarea-rows: 15;
}
.insertRowTable .CodeMirror {
height: ceil($textarea-rows * 0.6em);
width: ceil($textarea-cols * 0.6em);
min-height: ceil($textarea-rows * 0.6em);
min-width: ceil($textarea-cols * 0.6em);
border: 1px solid #a9a9a9;
}