🐞 fix(aceEditor): fix for editor

height for editor div was not set
This commit is contained in:
thelastWallE 2021-05-12 13:00:46 +02:00
parent c9debf65c9
commit dd494e6460
2 changed files with 3 additions and 1 deletions

View File

@ -151,7 +151,8 @@ div#settings_plugin_klipper div.tab-content div#conf.tab-pane div.control-group
div#settings_plugin_klipper div.tab-content div#conf.tab-pane div.control-group div.conf-editor div#plugin-klipper-config {
font-family: monospace;
overflow: auto;
height: -webkit-fill-available
height: 100%;
height: -webkit-fill-available;
}
div#settings_plugin_klipper.tab-pane.active form.form-horizontal div.tab-content div#conf.tab-pane.active button.btn.btn-small {

View File

@ -193,6 +193,7 @@ $(function() {
hScrollBarAlwaysVisible: false,
vScrollBarAlwaysVisible: true,
autoScrollEditorIntoView: true,
showPrintMargin: false,
//maxLines: "Infinity"
})