mirror of https://gitlab.com/bashrc2/epicyon
Icon block
parent
7906713f67
commit
95247c2236
|
@ -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);
|
||||
|
|
|
@ -5733,6 +5733,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
|
|||
if editImageClass == 'leftColEdit':
|
||||
htmlStr += '\n <center>\n'
|
||||
|
||||
htmlStr += ' <div class="leftColIcons">\n'
|
||||
if editor:
|
||||
# show the edit icon
|
||||
htmlStr += \
|
||||
|
@ -5761,6 +5762,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
|
|||
'" src="/' + iconsDir + '/logorss.png" /></a>\n'
|
||||
if rssIconAtTop:
|
||||
htmlStr += rssIconStr
|
||||
htmlStr += ' </div>\n'
|
||||
|
||||
if editImageClass == 'leftColEdit':
|
||||
htmlStr += ' </center>\n'
|
||||
|
|
Loading…
Reference in New Issue