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:
parent
b41e17124b
commit
43a521462d
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user