Skip to content

Commit

Permalink
FIX Pagination text colour is now accessible on hovering the current …
Browse files Browse the repository at this point in the history
…page button
  • Loading branch information
robbieaverill committed May 16, 2019
1 parent 344b8f2 commit 8ffae86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/Includes/CommentPagination.ss
Expand Up @@ -12,7 +12,7 @@
<% loop $Pages %>
<% if $CurrentBool %>
<li class="page-item active">
<a class="page-link"><strong>$PageNum</strong></a>
<a class="page-link" href="#"><strong>$PageNum</strong></a>
</li>
<% else %>
<li>
Expand Down
6 changes: 3 additions & 3 deletions templates/Includes/Pagination.ss
Expand Up @@ -11,9 +11,9 @@
<% end_if %>
<% loop $PaginationSummary(4) %>
<% if $CurrentBool %>
<li class="active page-item">
<a class="page-link">
<span>$PageNum <span class="sr-only"><%t CWP_Pagination.CURRENT_LABEL "(current)" %></span></span>
<li class="page-item active">
<a class="page-link" href="#">
$PageNum <span class="sr-only"><%t CWP_Pagination.CURRENT_LABEL "(current)" %></span>
</a>
</li>
<% else %>
Expand Down

0 comments on commit 8ffae86

Please sign in to comment.