mirror of
https://github.com/neocities/neocities.git
synced 2025-07-22 18:46:07 +02:00
Fixed pagination arrows
This commit is contained in:
parent
7caba79217
commit
16c4a93305
2 changed files with 7 additions and 3 deletions
|
@ -823,6 +823,10 @@ a.tag:hover {
|
|||
.browse-page .tags {
|
||||
padding: 0 30px 30px 30px;
|
||||
}
|
||||
.pagination .arrow {
|
||||
vertical-align: 1px;
|
||||
}
|
||||
|
||||
.interior .header-Outro.with-columns .col.filter {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 4px;
|
||||
|
|
|
@ -92,9 +92,9 @@
|
|||
|
||||
<% if params[:sort_by] != 'random' %>
|
||||
<% if @page_count > 1 %>
|
||||
<div class="txt-Center content eps">
|
||||
<div class="txt-Center content eps pagination">
|
||||
<% if @current_page != 1 %>
|
||||
<a href="#" onclick="getPage(<%= @current_page - 1 %>); return false"><i class="icon-arrow-left" style="text-decoration: none"></i></a>
|
||||
<a href="#" onclick="getPage(<%= @current_page - 1 %>); return false"><i class="fa fa-arrow-left arrow"></i></a>
|
||||
<% end %>
|
||||
|
||||
<% 1.upto(@page_count) do |num| %>
|
||||
|
@ -106,7 +106,7 @@
|
|||
<% end %>
|
||||
|
||||
<% if @current_page != @page_count %>
|
||||
<a href="#" onclick="getPage(<%= @current_page + 1 %>); return false"><i class="icon-arrow-right" style="text-decoration: none"></i></a>
|
||||
<a href="#" onclick="getPage(<%= @current_page + 1 %>); return false"><i class="fa fa-arrow-right arrow"></i></a>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue