mirror of https://gitlab.com/bashrc2/epicyon
Use label on date
parent
dc49f05788
commit
c362daba79
|
@ -5069,7 +5069,8 @@ def individualPostAsHtml(allowDownloads: bool,
|
||||||
footerStr = '<a href="' + publishedLink + \
|
footerStr = '<a href="' + publishedLink + \
|
||||||
'" class="' + timeClass + '">' + publishedStr + '</a>\n'
|
'" class="' + timeClass + '">' + publishedStr + '</a>\n'
|
||||||
else:
|
else:
|
||||||
footerStr = publishedStr + '\n'
|
footerStr = ' <label class="' + timeClass + '">' + \
|
||||||
|
publishedStr + '</label>\n'
|
||||||
|
|
||||||
# change the background color for DMs in inbox timeline
|
# change the background color for DMs in inbox timeline
|
||||||
if showDMicon:
|
if showDMicon:
|
||||||
|
@ -5084,7 +5085,8 @@ def individualPostAsHtml(allowDownloads: bool,
|
||||||
footerStr += ' <a href="' + publishedLink + '" class="' + \
|
footerStr += ' <a href="' + publishedLink + '" class="' + \
|
||||||
timeClass + '">' + publishedStr + '</a>\n'
|
timeClass + '">' + publishedStr + '</a>\n'
|
||||||
else:
|
else:
|
||||||
footerStr += publishedStr + '\n'
|
footerStr += ' <label class="' + timeClass + '">' + \
|
||||||
|
publishedStr + '</label>\n'
|
||||||
footerStr += ' </div>\n'
|
footerStr += ' </div>\n'
|
||||||
|
|
||||||
postIsSensitive = False
|
postIsSensitive = False
|
||||||
|
|
Loading…
Reference in New Issue