From 8e453304091327ad2e957a97d23eb0d76bfbc5a6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 19 Nov 2020 20:52:09 +0000 Subject: [PATCH] Different separator widths for different columns --- epicyon-profile.css | 6 ++++-- theme/indymediamodern/theme.json | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index 4dfc8ecd..681fc320 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -132,6 +132,8 @@ --post-separator-margin-top: 0; --post-separator-margin-bottom: 0; --post-separator-width: 95%; + --separator-width-left: 95%; + --separator-width-right: 95%; --post-separator-height: 1px; --header-vertical-offset: 0; --profile-background-height: 25vw; @@ -189,7 +191,7 @@ body, html { background-color: var(--column-left-color); padding-top: var(--post-separator-margin-top); padding-bottom: var(--post-separator-margin-bottom); - width: var(--post-separator-width); + width: var(--separator-width-left); height: var(--post-separator-height); display: block; } @@ -198,7 +200,7 @@ body, html { background-color: var(--column-left-color); padding-top: var(--post-separator-margin-top); padding-bottom: var(--post-separator-margin-bottom); - width: var(--post-separator-width); + width: var(--separator-width-right); height: var(--post-separator-height); display: block; } diff --git a/theme/indymediamodern/theme.json b/theme/indymediamodern/theme.json index b3d77b8d..4bb88055 100644 --- a/theme/indymediamodern/theme.json +++ b/theme/indymediamodern/theme.json @@ -35,7 +35,9 @@ "font-size-dropdown-header": "30px", "post-separator-margin-top": "1%", "post-separator-margin-bottom": "1%", - "post-separator-width": "95%", + "post-separator-width": "96%", + "separator-width-left": "98%", + "separator-width-right": "98%", "post-separator-height": "1px", "column-left-border-width": "0px", "column-right-border-width": "0px",