mirror of https://gitlab.com/bashrc2/epicyon
Tab order for left column buttons
parent
110c500221
commit
6f6f065204
|
@ -162,7 +162,7 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str,
|
||||||
# show the edit icon
|
# show the edit icon
|
||||||
html_str += \
|
html_str += \
|
||||||
' <a href="/users/' + nickname + '/editlinks" ' + \
|
' <a href="/users/' + nickname + '/editlinks" ' + \
|
||||||
'accesskey="' + access_keys['menuEdit'] + '">' + \
|
'accesskey="' + access_keys['menuEdit'] + '" tabindex="5">' + \
|
||||||
'<img class="' + edit_image_class + \
|
'<img class="' + edit_image_class + \
|
||||||
'" loading="lazy" decoding="async" alt="' + \
|
'" loading="lazy" decoding="async" alt="' + \
|
||||||
translate['Edit Links'] + ' | " title="' + \
|
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
|
# show the theme designer icon
|
||||||
html_str += \
|
html_str += \
|
||||||
' <a href="/users/' + nickname + '/themedesigner" ' + \
|
' <a href="/users/' + nickname + '/themedesigner" ' + \
|
||||||
'accesskey="' + access_keys['menuThemeDesigner'] + '">' + \
|
'accesskey="' + access_keys['menuThemeDesigner'] + \
|
||||||
|
'" tabindex="5">' + \
|
||||||
'<img class="' + edit_image_class + \
|
'<img class="' + edit_image_class + \
|
||||||
'" loading="lazy" decoding="async" alt="' + \
|
'" loading="lazy" decoding="async" alt="' + \
|
||||||
translate['Theme Designer'] + ' | " title="' + \
|
translate['Theme Designer'] + ' | " title="' + \
|
||||||
|
@ -191,7 +192,8 @@ def get_left_column_content(base_dir: str, nickname: str, domain_full: str,
|
||||||
else:
|
else:
|
||||||
rss_title = translate['RSS feed for this site']
|
rss_title = translate['RSS feed for this site']
|
||||||
rss_icon_str = \
|
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="' + \
|
'" loading="lazy" decoding="async" alt="' + \
|
||||||
rss_title + '" title="' + rss_title + \
|
rss_title + '" title="' + rss_title + \
|
||||||
'" src="/icons/logorss.png" /></a>\n'
|
'" src="/icons/logorss.png" /></a>\n'
|
||||||
|
|
Loading…
Reference in New Issue