diff --git a/epicyon-profile.css b/epicyon-profile.css index 6573ccd38..eb4df2ccc 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -358,8 +358,8 @@ details { width: 100%; background-color: var(--column-left-color); float: right; - display: block; padding-bottom: var(--column-left-icons-margin); + display: flex; } .postSeparatorImage img { diff --git a/webapp_column_left.py b/webapp_column_left.py index 866d41c67..88d8f7590 100644 --- a/webapp_column_left.py +++ b/webapp_column_left.py @@ -157,31 +157,10 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str, if edit_image_class == 'leftColEdit': html_str += '\n
\n' + # start of links column icons html_str += '
\n' - if editor: - # show the edit icon - html_str += \ - ' ' + \ - '' + \
-            translate['Edit Links'] + ' | \n' - - if artist: - # show the theme designer icon - html_str += \ - ' ' + \ - '' + \
-            translate['Theme Designer'] + ' | \n' - - # RSS icon + # 1. RSS icon if nickname != 'news': # rss feed for this account rss_url = http_prefix + '://' + domain_full + \ @@ -201,6 +180,30 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str, '" src="/icons/logorss.png" />\n' if rss_icon_at_top: html_str += rss_icon_str + + if artist: + # 2. show the theme designer icon + html_str += \ + ' ' + \ + '' + \
+            translate['Theme Designer'] + ' | \n' + + if editor: + # 3. show the edit icon + html_str += \ + ' ' + \ + '' + \
+            translate['Edit Links'] + ' | \n' + + # end of links column icons html_str += '
\n' if edit_image_class == 'leftColEdit':