From 0dd9c4e5ebb0219e51b7046bec1f95e43251016e Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Tue, 2 Jun 2015 12:11:22 -0400 Subject: [PATCH] Add missing styles for system tracking --- .../fact-data-error.block.less | 24 +++++++++++++++++++ .../system-tracking-container.block.less | 14 +++++++++++ 2 files changed, 38 insertions(+) create mode 100644 awx/ui/static/js/system-tracking/fact-data-error.block.less create mode 100644 awx/ui/static/js/system-tracking/system-tracking-container.block.less diff --git a/awx/ui/static/js/system-tracking/fact-data-error.block.less b/awx/ui/static/js/system-tracking/fact-data-error.block.less new file mode 100644 index 0000000000..941cf9e0f7 --- /dev/null +++ b/awx/ui/static/js/system-tracking/fact-data-error.block.less @@ -0,0 +1,24 @@ +/** @define FactDataError */ + +@import "shared/branding/colors.less"; + +.FactDataError { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + // background-color: @ansible-red; + + &-message { + font-family: merriweather; + font-size: 1.5em; + line-height: 1.5; + text-align: center; + width: 75%; + margin-bottom: 2em; + } + + &-note { + + } +} diff --git a/awx/ui/static/js/system-tracking/system-tracking-container.block.less b/awx/ui/static/js/system-tracking/system-tracking-container.block.less new file mode 100644 index 0000000000..6a50afbff5 --- /dev/null +++ b/awx/ui/static/js/system-tracking/system-tracking-container.block.less @@ -0,0 +1,14 @@ +.SystemTrackingContainer { + display: flex; + flex-direction: column; + + min-height: 85vh; + > * { + flex: 0; + } + + &-main { + flex: 1; + align-self: stretch; + } +}