diff --git a/webapp_headerbuttons.py b/webapp_headerbuttons.py
index 63e6a4be1..f695f9879 100644
--- a/webapp_headerbuttons.py
+++ b/webapp_headerbuttons.py
@@ -57,28 +57,42 @@ def header_buttons_timeline(default_timeline: str,
if default_timeline == 'tlmedia':
tl_str += \
''
elif default_timeline == 'tlblogs':
tl_str += \
''
elif default_timeline == 'tlfeatures':
tl_str += \
'' + translate['Features'] + \
''
else:
tl_str += \
'' + \
- translate['Inbox'] + ''
+ inbox_button + '"'
+ if box_name == 'inbox':
+ tl_str += ' aria-current="location"'
+ tl_str += \
+ '>' + translate['Inbox'] + ''
# if this is a news instance and we are viewing the news timeline
features_header = False
@@ -87,8 +101,11 @@ def header_buttons_timeline(default_timeline: str,
if not features_header:
tl_str += \
- '' + html_highlight_label(translate['DM'], new_dm) + \
''
@@ -96,8 +113,11 @@ def header_buttons_timeline(default_timeline: str,
acct_dir(base_dir, nickname, domain) + '/tlreplies.index'
if os.path.isfile(replies_index_filename):
tl_str += \
- '' + \
- '' + \
+ '' + \
html_highlight_label(translate['Replies'], new_reply) + \
''
@@ -106,15 +126,22 @@ def header_buttons_timeline(default_timeline: str,
if not minimal and not features_header:
tl_str += \
'' + \
- '' + translate['Media'] + \
''
else:
if not minimal:
tl_str += \
'' + translate['Inbox'] + \
''
@@ -128,14 +155,22 @@ def header_buttons_timeline(default_timeline: str,
title_str = translate['Article']
tl_str += \
'' + title_str + \
''
else:
if not minimal:
tl_str += \
'' + translate['Inbox'] + \
''
@@ -145,7 +180,11 @@ def header_buttons_timeline(default_timeline: str,
if not features_header:
tl_str += \
'' + translate['Inbox'] + \
''
@@ -205,7 +244,11 @@ def header_buttons_timeline(default_timeline: str,
if not features_header:
# button for the outbox
tl_str += \
- '' + translate['Sent'] + \
''
@@ -278,8 +321,11 @@ def header_buttons_timeline(default_timeline: str,
if features_header:
tl_str += \
- '' + \
- '' + \
+ '' + \
'' + translate['User'] + ''
# the newswire button to show right column links
diff --git a/webapp_timeline.py b/webapp_timeline.py
index eb34116aa..7b90ec8ae 100644
--- a/webapp_timeline.py
+++ b/webapp_timeline.py
@@ -659,8 +659,11 @@ def html_timeline(css_cache: {}, default_timeline: str,
moderation_button_str = ''
if moderator and not minimal:
moderation_button_str = \
- '' + \
html_highlight_label(translate['Mod'], new_report) + \
' '
@@ -672,19 +675,30 @@ def html_timeline(css_cache: {}, default_timeline: str,
events_button_str = ''
if not minimal:
shares_button_str = \
- '' + \
+ '' + \
html_highlight_label(translate['Shares'], new_share) + \
''
wanted_button_str = \
'' + \
+ wanted_button + '"'
+ if box_name == 'tlwanted':
+ wanted_button_str += ' aria-current="location"'
+ wanted_button_str += \
+ '>' + \
html_highlight_label(translate['Wanted'], new_wanted) + \
''
bookmarks_button_str = \
- '' + translate['Bookmarks'] + \
''