Page number style not using mark

main
bashrc 2026-08-21 16:05:53 +01:00
parent 69f43d7f30
commit 76e8b7c85b
2 changed files with 1 additions and 8 deletions

View File

@ -325,13 +325,6 @@ figure {
height: auto;
}
mark {
background-color: var(--main-bg-color);
color: var(--main-fg-color);
font-size: 110%;
font-weight: bold;
}
p mark {
background-color: var(--main-fg-color);
color: var(--main-bg-color);

View File

@ -425,7 +425,7 @@ def page_number_buttons(users_path: str, box_name: str,
page_str: str = ' ' + str(page) + ' '
curr_page_str: str = ''
if page == page_number:
page_str = '[<mark>' + str(page) + '</mark>]'
page_str = '<b>[' + str(page) + ']</b>'
aria_page_str = ' aria-current="true"'
curr_page_str = 'Current Page, '
num_str += \