Commit 17c4eba385e5aedc668ba6d2ec772e2a5239433d
1 parent
7944485d
Exists in
master
and in
1 other branch
Simplify notice pagination until it is fully styled
Showing
2 changed files
with
7 additions
and
1 deletions
Show diff stats
app/views/errs/show.html.haml
@@ -12,7 +12,7 @@ | @@ -12,7 +12,7 @@ | ||
12 | 12 | ||
13 | %h4= @notice.message | 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 | viewing occurrence #{@notices.current_page} of #{@notices.total_pages} | 16 | viewing occurrence #{@notices.current_page} of #{@notices.total_pages} |
17 | 17 | ||
18 | .tab-bar | 18 | .tab-bar |
public/stylesheets/application.css
@@ -424,6 +424,12 @@ table.errs td.message em { | @@ -424,6 +424,12 @@ table.errs td.message em { | ||
424 | font-size: 0.9em; | 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 | /* Backtrace */ | 433 | /* Backtrace */ |
428 | .window { | 434 | .window { |
429 | width: 100%; | 435 | width: 100%; |