From 970e986cf65832877200acc4c26cd62399cdf523 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 31 Oct 2020 12:51:56 +0000 Subject: [PATCH] Div for icons at the bottom of newswire/links columns --- epicyon-profile.css | 6 ++++++ webinterface.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index c34a87840..10ca6f8fe 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -1645,6 +1645,9 @@ div.container { padding: 10px; margin: 20px 60px; } + .columnIcons img { + float: right; + } } @media screen and (min-width: 2200px) { @@ -2290,4 +2293,7 @@ div.container { padding: 10px; margin: 40px 80px; } + .columnIcons img { + float: right; + } } diff --git a/webinterface.py b/webinterface.py index b67ff778f..6a17e3f37 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5665,7 +5665,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, rssAtBottom = not rssIconAtTop or not showHeaderImage if linksFileContainsEntries and rssAtBottom: - htmlStr += '
' + rssIconStr + htmlStr += '
' + rssIconStr + '
' return htmlStr @@ -5883,7 +5883,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, rssAtBottom = not rssIconAtTop or not showHeaderImage if newswireContentStr and rssAtBottom: - htmlStr += '
' + rssIconStr + htmlStr += '
' + rssIconStr + '
' return htmlStr