mirror of https://gitlab.com/bashrc2/epicyon
Underline page number without using css, to be more visible in shell browsers
parent
b67abc2ce4
commit
9c4614910b
|
@ -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);
|
||||
|
|
|
@ -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 += \
|
||||
|
|
Loading…
Reference in New Issue