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;
|
float: right;
|
||||||
}
|
}
|
||||||
.pageslist mark {
|
.pageslist mark {
|
||||||
text-decoration: underline;
|
|
||||||
}
|
}
|
||||||
.voteresult {
|
.voteresult {
|
||||||
width: var(--voteresult-width);
|
width: var(--voteresult-width);
|
||||||
|
@ -2642,7 +2641,6 @@ h3 {
|
||||||
margin-right: 1vw;
|
margin-right: 1vw;
|
||||||
}
|
}
|
||||||
.pageslist mark {
|
.pageslist mark {
|
||||||
text-decoration: underline;
|
|
||||||
}
|
}
|
||||||
.voteresult {
|
.voteresult {
|
||||||
width: var(--voteresult-width-mobile);
|
width: var(--voteresult-width-mobile);
|
||||||
|
@ -3431,7 +3429,6 @@ h3 {
|
||||||
margin-right: 1vw;
|
margin-right: 1vw;
|
||||||
}
|
}
|
||||||
.pageslist mark {
|
.pageslist mark {
|
||||||
text-decoration: underline;
|
|
||||||
}
|
}
|
||||||
.voteresult {
|
.voteresult {
|
||||||
width: var(--voteresult-width-tiny);
|
width: var(--voteresult-width-tiny);
|
||||||
|
|
|
@ -444,7 +444,7 @@ def _page_number_buttons(users_path: str, box_name: str,
|
||||||
page_str = str(page)
|
page_str = str(page)
|
||||||
curr_page_str = ''
|
curr_page_str = ''
|
||||||
if page == page_number:
|
if page == page_number:
|
||||||
page_str = '<mark>' + str(page) + '</mark>'
|
page_str = '<mark><u>' + str(page) + '</u></mark>'
|
||||||
aria_page_str = ' aria-current="true"'
|
aria_page_str = ' aria-current="true"'
|
||||||
curr_page_str = 'Current Page, '
|
curr_page_str = 'Current Page, '
|
||||||
num_str += \
|
num_str += \
|
||||||
|
|
Loading…
Reference in New Issue