🐞 fix(aceEditor): fix for editor
height for editor div was not set
This commit is contained in:
parent
c9debf65c9
commit
dd494e6460
|
@ -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 {
|
||||
|
|
|
@ -193,6 +193,7 @@ $(function() {
|
|||
hScrollBarAlwaysVisible: false,
|
||||
vScrollBarAlwaysVisible: true,
|
||||
autoScrollEditorIntoView: true,
|
||||
showPrintMargin: false,
|
||||
//maxLines: "Infinity"
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue