mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Fix layout of the retry all checkbox
This commit is contained in:
parent
01806072af
commit
7056c36ebb
2 changed files with 8 additions and 5 deletions
|
@ -188,15 +188,16 @@ td form {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.table-checkbox {
|
.table tr > td.table-checkbox, .table tr > th.table-checkbox {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.table-checkbox label {
|
table .table-checkbox label {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 8px;
|
padding: 0px 16px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
line-height: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar .navbar-brand {
|
.navbar .navbar-brand {
|
||||||
|
|
|
@ -15,8 +15,10 @@
|
||||||
<table class="table table-striped table-bordered table-white">
|
<table class="table table-striped table-bordered table-white">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th width="20px">
|
<th width="20px" class="table-checkbox">
|
||||||
<input type="checkbox" class="check_all" />
|
<label>
|
||||||
|
<input type="checkbox" class="check_all" />
|
||||||
|
</label>
|
||||||
</th>
|
</th>
|
||||||
<th width="25%"><%= t('NextRetry') %></th>
|
<th width="25%"><%= t('NextRetry') %></th>
|
||||||
<th width="11%"><%= t('RetryCount') %></th>
|
<th width="11%"><%= t('RetryCount') %></th>
|
||||||
|
|
Loading…
Reference in a new issue