mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Add row hover behavior to all tables
This commit is contained in:
parent
6484b7e139
commit
c0148bbb17
6 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
|||
</header>
|
||||
|
||||
<div class="table_container">
|
||||
<table class="table table-bordered table-striped">
|
||||
<table class="table table-bordered table-striped table-hover">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><%= t('Queue') %></th>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<h3><%= t('Error') %></h3>
|
||||
<div class="table_container">
|
||||
<table class="error table table-bordered table-striped">
|
||||
<table class="error table table-bordered table-striped table-hover">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><%= t('ErrorClass') %></th>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<form action="<%= root_path %>morgue" method="post">
|
||||
<%= csrf_tag %>
|
||||
<div class="table_container">
|
||||
<table class="table table-striped table-bordered">
|
||||
<table class="table table-striped table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="table-checkbox checkbox-column">
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<form action="<%= root_path %>retries" method="post">
|
||||
<%= csrf_tag %>
|
||||
<div class="table_container">
|
||||
<table class="table table-striped table-bordered">
|
||||
<table class="table table-striped table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="table-checkbox checkbox-column">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<h3><%= t('Error') %></h3>
|
||||
<div class="table_container">
|
||||
<table class="error table table-bordered table-striped">
|
||||
<table class="error table table-bordered table-striped table-hover">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><%= t('ErrorClass') %></th>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<form action="<%= root_path %>scheduled" method="post">
|
||||
<%= csrf_tag %>
|
||||
<div class="table_container">
|
||||
<table class="table table-striped table-bordered">
|
||||
<table class="table table-striped table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="checkbox-column">
|
||||
|
|
Loading…
Add table
Reference in a new issue