From fae6573ae2801791fa7d347d4a4b81973dd2530a Mon Sep 17 00:00:00 2001 From: Marliana Lara Date: Wed, 3 May 2017 11:55:09 -0400 Subject: [PATCH] Stretch left panel to height of browser --- .../client/src/standard-out/standard-out.block.less | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/awx/ui/client/src/standard-out/standard-out.block.less b/awx/ui/client/src/standard-out/standard-out.block.less index fe55a2b766..eea5d59149 100644 --- a/awx/ui/client/src/standard-out/standard-out.block.less +++ b/awx/ui/client/src/standard-out/standard-out.block.less @@ -8,7 +8,6 @@ standard-out-log { flex: 5; display: flex; - overflow: hidden; } .StandardOut-preContent{ @@ -18,7 +17,7 @@ standard-out-log { } .StandardOut-container { - .OnePlusOne-container(80vh, @breakpoint-md); + .OnePlusOne-container(100%, @breakpoint-md); &.fullscreen { .StandardOut-rightPanel { @@ -28,11 +27,16 @@ standard-out-log { } .StandardOut-leftPanel { - .OnePlusOne-panel--left(100%, @breakpoint-md); + .OnePlusOne-panel--left(auto, @breakpoint-md); max-width: 600px; + display: flex; @media (max-width: @breakpoint-md - 1px) { max-width: 100%; } + + .Panel { + height: auto; + } } .StandardOut-rightPanel { @@ -48,7 +52,7 @@ standard-out-log { } .StandardOut-consoleOutput { - height: 94%; + height: 493px; } } @@ -63,7 +67,6 @@ standard-out-log { max-height: 100vh; height: ~"calc(100vh - 245px)"; width: 100%; - overflow: auto; }