From 8341810ba2242f86ced2f992deeefa13731f96e4 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Fri, 9 Oct 2015 15:59:58 -0400 Subject: [PATCH] add standard out less file I forgot --- .../src/standard-out/standardOut.block.less | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 awx/ui/client/src/standard-out/standardOut.block.less diff --git a/awx/ui/client/src/standard-out/standardOut.block.less b/awx/ui/client/src/standard-out/standardOut.block.less new file mode 100644 index 0000000000..497471a7eb --- /dev/null +++ b/awx/ui/client/src/standard-out/standardOut.block.less @@ -0,0 +1,47 @@ +/** @define StandardOut */ + +.StandardOut { + height: 100%; + display: flex; + flex-direction: column; +} + +.StandardOut-header { + flex: initial; +} + +.StandardOut-breadcrumbs { + padding-left: 15px; +} + +.StandardOut-form { + padding-left: 15px; +} + +.StandardOut-panel { + flex: 1 0 0; + display: flex; + flex-direction: column; + margin-bottom: -41px; +} + +.StandardOut-panelHeading { + flex: initial; +} + +.StandardOut-panelBody { + flex: 1 0 auto; + padding: 0; + position: relative; +} + +.StandardOut-preContainer { + position: absolute; + height: 100%; + padding-left: 15px; + padding-right: 15px; +} + +.StandardOut-preContent { + position: absolute; +}