Separator above page up

merge-requests/16/merge
Bob Mottram 2021-02-07 21:45:31 +00:00
parent 033dc4a238
commit 3d5ff0ecec
1 changed files with 6 additions and 5 deletions

View File

@ -590,8 +590,14 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
_logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '7')
# separator between posts which only appears in shell browsers
# such as Lynx and is not read by screen readers
textModeSeparator = \
'<div class="transparent"><hr></div>'
# page up arrow
if pageNumber > 1:
tlStr += textModeSeparator
tlStr += \
' <center>\n' + \
' <a href="' + usersPath + '/' + boxName + \
@ -602,11 +608,6 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
translate['Page up'] + '"></a>\n' + \
' </center>\n'
# separator between posts which only appears in shell browsers
# such as Lynx and is not read by screen readers
textModeSeparator = \
'<div class="transparent"><hr></div>'
# show the posts
itemCtr = 0
if timelineJson: