From 17c4eba385e5aedc668ba6d2ec772e2a5239433d Mon Sep 17 00:00:00 2001 From: Jared Pace Date: Sun, 8 Aug 2010 17:56:45 -0400 Subject: [PATCH] Simplify notice pagination until it is fully styled --- app/views/errs/show.html.haml | 2 +- public/stylesheets/application.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/views/errs/show.html.haml b/app/views/errs/show.html.haml index 6aa8430..99b47cc 100644 --- a/app/views/errs/show.html.haml +++ b/app/views/errs/show.html.haml @@ -12,7 +12,7 @@ %h4= @notice.message -= will_paginate @notices, :param_name => :notice, :page_links => false += will_paginate @notices, :param_name => :notice, :page_links => false, :class => 'notice-pagination' viewing occurrence #{@notices.current_page} of #{@notices.total_pages} .tab-bar diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index b357753..0e4ac5d 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -424,6 +424,12 @@ table.errs td.message em { font-size: 0.9em; } +/* Notices Pagination */ +.notice-pagination { + float: left; + margin-right: 2em; +} + /* Backtrace */ .window { width: 100%; -- libgit2 0.21.2