Underline page number without using css, to be more visible in shell browsers

merge-requests/30/head
Bob Mottram 2022-05-29 10:26:24 +01:00
parent b67abc2ce4
commit 9c4614910b
2 changed files with 1 additions and 4 deletions

View File

@ -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);

View File

@ -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 = '<mark>' + str(page) + '</mark>'
page_str = '<mark><u>' + str(page) + '</u></mark>'
aria_page_str = ' aria-current="true"'
curr_page_str = 'Current Page, '
num_str += \