From e8e440516ffd406e54a4f4d9a43bc6d02c2ceefe Mon Sep 17 00:00:00 2001 From: bjarnef Date: Thu, 4 Aug 2016 20:30:54 +0200 Subject: [PATCH] Ensure editing area use full height when it only has a little or no content --- .../src/less/components/editor.less | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/less/components/editor.less b/src/Umbraco.Web.UI.Client/src/less/components/editor.less index dba5e29e74..00dd8592ff 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/editor.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/editor.less @@ -2,7 +2,7 @@ contains styling for all main editor directives */ -.umb-editor-wrapper{ +.umb-editor-wrapper { background: white; position: absolute; top: 0; @@ -11,8 +11,13 @@ bottom: 0; display: flex; flex-direction: column; -} + > form { + display: flex; + flex-direction: column; + height: 100%; + } +} .umb-editor-header { background: @grayLighter;