diff --git a/app/views/editors/KeyframeView.html b/app/views/editors/KeyframeView.html index f217fce..54f52a8 100644 --- a/app/views/editors/KeyframeView.html +++ b/app/views/editors/KeyframeView.html @@ -82,17 +82,28 @@ .kf-editor .kfArena bz-slidepane{ font-size:14px; } + .kf-editor .kfArena bz-slidepane div.inner-console{ + overflow: hidden; + height: 100%; + display: grid; + grid-template-rows: auto minmax(3em, 30%); + } + .kf-editor .kfArena bz-slidepane div.commandline{ + grid-template-columns: auto 3em; + width: 98%; + } .kf-editor .kfArena bz-slidepane textarea{ - border-radius: 0; background: #000A; - margin: 0; padding: 0 1em 0 1em; - position: absolute; - bottom: 0; - left: 0; - width: 100%; + width: 96%; border-top: 1px solid white; color: #0F0; + resize: none; + } + .kf-editor button[data-trigger="execCommand"]{ + background-color:#6B5; + border-radius: 10px; + max-height: 3em; }