From 9c4614910b6aad116cfe2054ab3da57bf8db02a9 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 29 May 2022 10:26:24 +0100 Subject: [PATCH] Underline page number without using css, to be more visible in shell browsers --- epicyon-profile.css | 3 --- webapp_timeline.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index 93bd0bb33..d9e2bcc76 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -1849,7 +1849,6 @@ h3 { float: right; } .pageslist mark { - text-decoration: underline; } .voteresult { width: var(--voteresult-width); @@ -2642,7 +2641,6 @@ h3 { margin-right: 1vw; } .pageslist mark { - text-decoration: underline; } .voteresult { width: var(--voteresult-width-mobile); @@ -3431,7 +3429,6 @@ h3 { margin-right: 1vw; } .pageslist mark { - text-decoration: underline; } .voteresult { width: var(--voteresult-width-tiny); diff --git a/webapp_timeline.py b/webapp_timeline.py index 95feac597..da3bb453a 100644 --- a/webapp_timeline.py +++ b/webapp_timeline.py @@ -444,7 +444,7 @@ def _page_number_buttons(users_path: str, box_name: str, page_str = str(page) curr_page_str = '' if page == page_number: - page_str = '' + str(page) + '' + page_str = '' + str(page) + '' aria_page_str = ' aria-current="true"' curr_page_str = 'Current Page, ' num_str += \