diff --git a/app/views/errs/_table.html.haml b/app/views/errs/_table.html.haml
index cc41ec6..9e9670a 100644
--- a/app/views/errs/_table.html.haml
+++ b/app/views/errs/_table.html.haml
@@ -20,7 +20,7 @@
%em= err.where
%td.latest #{time_ago_in_words(err.last_notice_at)} ago
%td.deploy= err.app.last_deploy_at ? err.app.last_deploy_at.to_s(:micro) : 'n/a'
- %td.count= err.notices.count
+ %td.count= link_to err.notices.count, app_err_path(err.app, err)
- if errs.none?
%tr
%td{:colspan => (@app ? 5 : 6)}
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 2e3659d..116fb73 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -309,9 +309,15 @@ td.count {
-moz-border-radius: 18px;
-webkit-border-radius: 18px;
font-weight: bold;
+ opacity: 0.8;
+ -moz-opacity: 0.8;
+ -webkit-opacity: 0.8
}
.count a:hover {
text-decoration: none;
+ opacity: 1;
+ -moz-opacity: 1;
+ -webkit-opacity: 1;
}
/* Err Tables */
--
libgit2 0.21.2