Commit 17c4eba385e5aedc668ba6d2ec772e2a5239433d

Authored by Jared Pace
1 parent 7944485d
Exists in master and in 1 other branch production

Simplify notice pagination until it is fully styled

app/views/errs/show.html.haml
... ... @@ -12,7 +12,7 @@
12 12  
13 13 %h4= @notice.message
14 14  
15   -= will_paginate @notices, :param_name => :notice, :page_links => false
  15 += will_paginate @notices, :param_name => :notice, :page_links => false, :class => 'notice-pagination'
16 16 viewing occurrence #{@notices.current_page} of #{@notices.total_pages}
17 17  
18 18 .tab-bar
... ...
public/stylesheets/application.css
... ... @@ -424,6 +424,12 @@ table.errs td.message em {
424 424 font-size: 0.9em;
425 425 }
426 426  
  427 +/* Notices Pagination */
  428 +.notice-pagination {
  429 + float: left;
  430 + margin-right: 2em;
  431 +}
  432 +
427 433 /* Backtrace */
428 434 .window {
429 435 width: 100%;
... ...