mirror of
https://github.com/neocities/neocities.git
synced 2025-07-23 19:10:40 +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 {
|
.browse-page .tags {
|
||||||
padding: 0 30px 30px 30px;
|
padding: 0 30px 30px 30px;
|
||||||
}
|
}
|
||||||
|
.pagination .arrow {
|
||||||
|
vertical-align: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.interior .header-Outro.with-columns .col.filter {
|
.interior .header-Outro.with-columns .col.filter {
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
padding-bottom: 4px;
|
padding-bottom: 4px;
|
||||||
|
|
|
@ -92,9 +92,9 @@
|
||||||
|
|
||||||
<% if params[:sort_by] != 'random' %>
|
<% if params[:sort_by] != 'random' %>
|
||||||
<% if @page_count > 1 %>
|
<% if @page_count > 1 %>
|
||||||
<div class="txt-Center content eps">
|
<div class="txt-Center content eps pagination">
|
||||||
<% if @current_page != 1 %>
|
<% 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 %>
|
<% end %>
|
||||||
|
|
||||||
<% 1.upto(@page_count) do |num| %>
|
<% 1.upto(@page_count) do |num| %>
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% if @current_page != @page_count %>
|
<% 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 %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue