fix jobs grid control layout on wide screens
Change-Id: I6418cfd298c4b2ec24e3b7e9342a0923fbdf278f Reviewed-on: https://gerrit.instructure.com/4094 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Zach Wily <zach@instructure.com>
This commit is contained in:
parent
5ab278b84d
commit
4eb6c40ca0
|
@ -74,20 +74,22 @@
|
||||||
</div>
|
</div>
|
||||||
<div style="clear:both">
|
<div style="clear:both">
|
||||||
<h2>Jobs List</h2>
|
<h2>Jobs List</h2>
|
||||||
<select id="jobs-flavor">
|
<div id="jobs-grid-controls">
|
||||||
<%= options_for_select([["All", 'all'],
|
<select id="jobs-flavor">
|
||||||
["Current", 'current'],
|
<%= options_for_select([["All", 'all'],
|
||||||
["Future", 'future'],
|
["Current", 'current'],
|
||||||
["Failed", 'failed']], @flavor) %>
|
["Future", 'future'],
|
||||||
</select>
|
["Failed", 'failed']], @flavor) %>
|
||||||
<button id='jobs-refresh'>refresh</button>
|
</select>
|
||||||
<input type='search' results='15' placeholder='Search Jobs' autosave='canvas-jobs-search' id='jobs-search' name='q' value="<%= params[:id].presence %>" />
|
<button id='jobs-refresh'>refresh</button>
|
||||||
Total: <span id='jobs-total'><%= @jobs_count %></span>
|
<input type='search' results='15' placeholder='Search Jobs' autosave='canvas-jobs-search' id='jobs-search' name='q' value="<%= params[:id].presence %>" />
|
||||||
<button id='select-all-jobs'>select all</button>
|
Total: <span id='jobs-total'><%= @jobs_count %></span>
|
||||||
With Selection:
|
<button id='select-all-jobs'>select all</button>
|
||||||
<button id='hold-jobs'>hold</button>
|
With Selection:
|
||||||
<button id='un-hold-jobs'>un-hold</button>
|
<button id='hold-jobs'>hold</button>
|
||||||
<button id='delete-jobs'>delete</button>
|
<button id='un-hold-jobs'>un-hold</button>
|
||||||
|
<button id='delete-jobs'>delete</button>
|
||||||
|
</div>
|
||||||
<div id="jobs-grid" style="width:650px; height:300px;" class='grid'>
|
<div id="jobs-grid" style="width:650px; height:300px;" class='grid'>
|
||||||
</div>
|
</div>
|
||||||
<div id="show-job">
|
<div id="show-job">
|
||||||
|
|
Loading…
Reference in New Issue