From aad1cd0623f855d66e62c0805ac3d247d96eb050 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 6 Nov 2020 21:25:47 +0000 Subject: [PATCH] Post line separators --- epicyon-profile.css | 5 +++++ theme.py | 2 ++ webinterface.py | 1 + 3 files changed, 8 insertions(+) diff --git a/epicyon-profile.css b/epicyon-profile.css index da6806098..a8a92948b 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -90,6 +90,7 @@ --column-left-header-size-mobile: 50px; --column-left-header-line-color: #555; --column-left-header-line-width: 0; + --post-line-width: 0; --column-left-icon-size: 20%; --column-left-icon-size-mobile: 10%; --column-left-image-width-mobile: 40vw; @@ -154,6 +155,10 @@ hr.linksLine { border: var(--column-left-header-line-width) solid var(--column-left-header-line-color); } +hr.postLine { + border: var(--post-line-width) solid var(--column-left-header-line-color); +} + .headericons { display: inline-block; float: right; diff --git a/theme.py b/theme.py index 903ebf8dd..5941c8a65 100644 --- a/theme.py +++ b/theme.py @@ -1021,6 +1021,7 @@ def setThemeIndymediaModern(baseDir: str): themeParams = { "column-left-header-line-color": "#BBBBBB", "column-left-header-line-width": "1px", + "post-line-width": "1px", "column-left-header-color": "black", "column-left-header-background": "white", "column-left-header-style": "none", @@ -1032,6 +1033,7 @@ def setThemeIndymediaModern(baseDir: str): "column-right-icon-size": "11%", "button-height-padding": "5px", "icon-brightness-change": "70%", + "border-width": "0px", "border-width-header": "0px", "tab-border-width": "3px", "tab-border-color": "grey", diff --git a/webinterface.py b/webinterface.py index 3422457b0..e634f595a 100644 --- a/webinterface.py +++ b/webinterface.py @@ -7269,6 +7269,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, if currTlStr: itemCtr += 1 + tlStr += '
\n' tlStr += currTlStr if boxName == 'tlmedia': tlStr += '\n'