mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
[Webui] Fix style bug in tablet mode
This commit is contained in:
parent
dfb4ce66bb
commit
f80f1155e3
1 changed files with 16 additions and 11 deletions
|
@ -15,18 +15,23 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="realtime" data-processed-label="<%= t('Processed') %>" data-failed-label="<%= t('Failed') %>"></div>
|
||||
<div id="realtime-legend"></div>
|
||||
<div class="row">
|
||||
<div id="realtime" data-processed-label="<%= t('Processed') %>" data-failed-label="<%= t('Failed') %>"></div>
|
||||
<div id="realtime-legend"></div>
|
||||
</div>
|
||||
|
||||
<h5>
|
||||
<div class="row">
|
||||
<h5>
|
||||
<span class="history-heading"><%= t('History') %></span>
|
||||
<a href="<%= root_path %>?days=7" class="history-graph <%= "active" if params[:days] == "7" %>"><%= t('OneWeek') %></a>
|
||||
<a href="<%= root_path %>" class="history-graph <%= "active" if params[:days].nil? || params[:days] == "30" %>" ><%= t('OneMonth') %></a>
|
||||
<a href="<%= root_path %>" class="history-graph <%= "active" if params[:days].nil? || params[:days] == "30" %>"><%= t('OneMonth') %></a>
|
||||
<a href="<%= root_path %>?days=90" class="history-graph <%= "active" if params[:days] == "90" %>"><%= t('ThreeMonths') %></a>
|
||||
<a href="<%= root_path %>?days=180" class="history-graph <%= "active" if params[:days] == "180" %>"><%= t('SixMonths') %></a>
|
||||
</h5>
|
||||
<div id="history" data-processed-label="<%= t('Processed') %>" data-failed-label="<%= t('Failed') %>" data-processed="<%= h Sidekiq.dump_json(@processed_history) %>" data-failed="<%= h Sidekiq.dump_json(@failed_history) %>" data-update-url="<%= root_path %>dashboard/stats"></div>
|
||||
<div id="history-legend"></div>
|
||||
</h5>
|
||||
|
||||
<div id="history" data-processed-label="<%= t('Processed') %>" data-failed-label="<%= t('Failed') %>" data-processed="<%= h Sidekiq.dump_json(@processed_history) %>" data-failed="<%= h Sidekiq.dump_json(@failed_history) %>" data-update-url="<%= root_path %>dashboard/stats"></div>
|
||||
<div id="history-legend"></div>
|
||||
</div>
|
||||
|
||||
<br/>
|
||||
<h5>Redis</h5>
|
||||
|
|
Loading…
Reference in a new issue