Fix #17705 - CodeMirror query box has overflow preventing click
Fixes: #17705 Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
parent
10b2cbfd0a
commit
bff74dc588
@ -7,6 +7,13 @@ $textarea-rows: 15;
|
||||
border: $card-border-width solid $card-border-color;
|
||||
|
||||
@include border-radius($card-border-radius);
|
||||
|
||||
// @see: issue #17705
|
||||
div.CodeMirror-scroll {
|
||||
margin-right: 0;
|
||||
padding-bottom: 0;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
}
|
||||
|
||||
#inline_editor_outer .CodeMirror {
|
||||
|
||||
@ -8,6 +8,13 @@ $textarea-rows: 15 !default;
|
||||
height: 20rem;
|
||||
border: 1px solid #ccc;
|
||||
direction: ltr;
|
||||
|
||||
// @see: issue #17705
|
||||
div.CodeMirror-scroll {
|
||||
margin-right: 0;
|
||||
padding-bottom: 0;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
}
|
||||
|
||||
#pma_console .CodeMirror {
|
||||
|
||||
@ -4,6 +4,13 @@ $textarea-rows: 15;
|
||||
.CodeMirror {
|
||||
height: 20rem;
|
||||
direction: ltr;
|
||||
|
||||
// @see: issue #17705
|
||||
div.CodeMirror-scroll {
|
||||
margin-right: 0;
|
||||
padding-bottom: 0;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
}
|
||||
|
||||
#inline_editor_outer .CodeMirror {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user