Tab order for left column buttons

main
Bob Mottram 2022-05-25 12:14:44 +01:00
parent 110c500221
commit 6f6f065204
1 changed files with 5 additions and 3 deletions

View File

@ -162,7 +162,7 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str,
# show the edit icon
html_str += \
' <a href="/users/' + nickname + '/editlinks" ' + \
'accesskey="' + access_keys['menuEdit'] + '">' + \
'accesskey="' + access_keys['menuEdit'] + '" tabindex="5">' + \
'<img class="' + edit_image_class + \
'" loading="lazy" decoding="async" alt="' + \
translate['Edit Links'] + ' | " title="' + \
@ -172,7 +172,8 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str,
# show the theme designer icon
html_str += \
' <a href="/users/' + nickname + '/themedesigner" ' + \
'accesskey="' + access_keys['menuThemeDesigner'] + '">' + \
'accesskey="' + access_keys['menuThemeDesigner'] + \
'" tabindex="5">' + \
'<img class="' + edit_image_class + \
'" loading="lazy" decoding="async" alt="' + \
translate['Theme Designer'] + ' | " title="' + \
@ -191,7 +192,8 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str,
else:
rss_title = translate['RSS feed for this site']
rss_icon_str = \
' <a href="' + rss_url + '"><img class="' + edit_image_class + \
' <a href="' + rss_url + '" tabindex="5">' + \
'<img class="' + edit_image_class + \
'" loading="lazy" decoding="async" alt="' + \
rss_title + '" title="' + rss_title + \
'" src="/icons/logorss.png" /></a>\n'