Added Color to active pagination page

This commit is contained in:
Xavi 2023-03-13 16:55:58 -07:00
parent c509d28afc
commit d625b78131
2 changed files with 12 additions and 1 deletions

View File

@ -23,7 +23,7 @@
{{ $ellipsed = true }}
{{ end }}
{{ if $showNumber }}
<li class="page-item{{ if eq . $pag }} active{{ end }}"><a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a></li>
<li class="page-item{{ if eq . $pag }}-active{{ end }}"><a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a></li>
{{ else if $shouldEllipse }}
<li class="page-item disabled"><span aria-hidden="true">&nbsp;&hellip;&nbsp;</span></li>
{{ end }}

View File

@ -181,6 +181,17 @@ img.resize{
padding:4px;
}
.page-item-active{
font-size:15px;
display:inline-block;
border:1px solid #470161;
padding:3px;
}
.page-item-active a{
color:#ff00e5;
}
#ascii_site_heading{
color: #ff00e5;
}