From 039d692e4cef52acee4432ca76d9af8f57e34516 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 21 Aug 2015 15:10:19 -0700 Subject: [PATCH] Forgot to add new .scss file open #74 --- platform/commonUI/general/res/sass/_flex.scss | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 platform/commonUI/general/res/sass/_flex.scss diff --git a/platform/commonUI/general/res/sass/_flex.scss b/platform/commonUI/general/res/sass/_flex.scss new file mode 100644 index 0000000000..61e8007676 --- /dev/null +++ b/platform/commonUI/general/res/sass/_flex.scss @@ -0,0 +1,37 @@ +.l-flex { + &.l-flex-justify { + justify-content: space-between; + } + .l-flex-row, + &.l-flex-row { + display: flex; + flex-flow: row nowrap; + div, span { + //@include tmpBorder(); + } + > div, > span { + //flex: 1 1 0; + } + } + .l-flex-max { + flex: 1 0 !important; + } + + .flex-ignore { + display: flex; + flex-flow: row nowrap; + flex: 0 1 auto; + } +} + +// TEMP, move out of here once working +.object-browse-bar.bar > div.abs { + @include test(green); +} + + +.l-flex-row .title-label { + @include test(blue); + flex: 1 0 !important; +} +