From 95247c2236d08684b68ba7a8a64206e3b3be9ad7 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 7 Nov 2020 13:39:54 +0000 Subject: [PATCH] Icon block --- epicyon-profile.css | 5 +++++ webinterface.py | 2 ++ 2 files changed, 7 insertions(+) diff --git a/epicyon-profile.css b/epicyon-profile.css index 045224b62..e649b1df1 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -154,6 +154,11 @@ body, html { line-height: var(--line-spacing); } +.leftColIcons img { + float: right; + display: block; +} + .postSeparatorImage img { margin: var(--post-separator-margin) 0; width: var(--post-separator-width); diff --git a/webinterface.py b/webinterface.py index dfe96f1a4..36cd2620d 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5733,6 +5733,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, if editImageClass == 'leftColEdit': htmlStr += '\n
\n' + htmlStr += '
\n' if editor: # show the edit icon htmlStr += \ @@ -5761,6 +5762,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, '" src="/' + iconsDir + '/logorss.png" />\n' if rssIconAtTop: htmlStr += rssIconStr + htmlStr += '
\n' if editImageClass == 'leftColEdit': htmlStr += '
\n'