From bf9811bf1192f35805834b98c79ad7a7f3687b9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 25 Jul 2018 17:51:01 +0200 Subject: [PATCH] Add CSS rules for 13 to be backward compatible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- css/comp-13.scss | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 css/comp-13.scss diff --git a/css/comp-13.scss b/css/comp-13.scss new file mode 100644 index 000000000..776bcdc4b --- /dev/null +++ b/css/comp-13.scss @@ -0,0 +1,29 @@ +#content-wrapper #content { + height: 100%; +} +#app-content { + flex-grow: 1; + height: 100%; +} + +#app-sidebar { + right: -500px; + max-width: 100%; + width: 500px; + display:flex; + flex-direction: column; + + &.details-visible { + right: 0; + } +} + +#app-content { + &.details-visible { + margin-right: 500px; + } +} + +#content[class*='app-'] * { + box-sizing: border-box; +}