Fix #17705 - remove hiding the scroll bars because large and long SQL queries can not be scrolled

Ref: bff74dc588

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2022-11-12 14:02:59 +01:00
parent 970dbd6d44
commit ed00df955f
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 9 additions and 3 deletions

View File

@ -7,12 +7,14 @@ $textarea-rows: 15;
border: $card-border-width solid $card-border-color;
@include border-radius($card-border-radius);
}
// Code mirror default style (do not affect the console style)
.CodeMirror.cm-s-default {
// @see: issue #17705
div.CodeMirror-scroll {
margin-right: 0;
padding-bottom: 0;
overflow: hidden !important;
}
}

View File

@ -8,12 +8,14 @@ $textarea-rows: 15 !default;
height: 20rem;
border: 1px solid #ccc;
direction: ltr;
}
// Code mirror default style (do not affect the console style)
.CodeMirror.cm-s-default {
// @see: issue #17705
div.CodeMirror-scroll {
margin-right: 0;
padding-bottom: 0;
overflow: hidden !important;
}
}

View File

@ -4,12 +4,14 @@ $textarea-rows: 15;
.CodeMirror {
height: 20rem;
direction: ltr;
}
// Code mirror default style (do not affect the console style)
.CodeMirror.cm-s-default {
// @see: issue #17705
div.CodeMirror-scroll {
margin-right: 0;
padding-bottom: 0;
overflow: hidden !important;
}
}