# HG changeset patch # User Vincent Tondellier # Date 1407448607 -7200 # Node ID 703f1af889d16db9105d2e534d60bc9d368b1a0c # Parent 093ea107a96f3ae4827886dc9b449d5fcc3a19a4 Add highlight on mouse hover to tables diff -r 093ea107a96f -r 703f1af889d1 templates/index.html.ep --- a/templates/index.html.ep Thu Aug 07 23:51:40 2014 +0200 +++ b/templates/index.html.ep Thu Aug 07 23:56:47 2014 +0200 @@ -1,6 +1,6 @@ % title 'Latest crashs'; % layout 'main'; -%= t table => (class => 'table table-striped table-bordered table-condensed') => begin +%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin Product diff -r 093ea107a96f -r 703f1af889d1 templates/report/modules.html.ep --- a/templates/report/modules.html.ep Thu Aug 07 23:51:40 2014 +0200 +++ b/templates/report/modules.html.ep Thu Aug 07 23:56:47 2014 +0200 @@ -1,4 +1,4 @@ -%= t table => (class => 'table table-striped table-bordered table-condensed') => begin +%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin Filename @@ -8,11 +8,11 @@ % foreach my $module(@$modules) { - - %= t td => $module->{filename} - %= t td => $module->{version} - %= t td => $module->{debug_id} - %= t td => $module->{debug_file} - + %= t tr => begin + %= t td => $module->{filename} + %= t td => $module->{version} + %= t td => $module->{debug_id} + %= t td => $module->{debug_file} + % end % } -% end +% end