1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fixed: Bulk UI cleanup, fixes and consistency improvements (#1959)

This commit is contained in:
James White
2017-08-20 13:38:24 +01:00
committed by Leonardo Galli
parent 4d8a270170
commit 0c8e264668
247 changed files with 2283 additions and 2686 deletions
@@ -8,36 +8,41 @@
</div>
<div class="recent-folders">
{{#if recentFolders}}
<h4>Recent Folders</h4>
<table class="table table-hover">
<thead>
<tr>
<th>Path</th>
<th>Last Used</th>
</tr>
</thead>
<tbody>
{{#each recentFolders}}
<tr class="recent-folder x-recent-folder" data-path="{{path}}">
<td>{{path}}</td>
<td>{{RelativeDate lastUsed}}</td>
</tr>
{{/each}}
</tbody>
</table>
<h4>Recent folders</h4>
<table class="table table-hover">
<thead>
<tr>
<th>Path</th>
<th>Last used</th>
</tr>
</thead>
<tbody>
{{#each recentFolders}}
<tr class="recent-folder x-recent-folder" data-path="{{path}}">
<td>{{path}}</td>
<td>{{RelativeDate lastUsed}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{/if}}
</div>
<div class="buttons">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<button class="btn btn-primary btn-lg btn-block x-automatic-import x-button"><i class="icon-sonarr-search-automatic"></i> Import File(s) Automatically</button>
<button class="btn btn-primary btn-lg btn-block x-automatic-import x-button">
<i class="icon-sonarr-search-automatic" aria-hidden="true"></i>
Import file(s) automatically
</button>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<button class="btn btn-primary btn-lg btn-block x-manual-import x-button"><i class="icon-sonarr-search-manual"></i> Manual Import</button>
<button class="btn btn-primary btn-lg btn-block x-manual-import x-button">
<i class="icon-sonarr-search-manual" aria-hidden="true"></i>
Manual import
</button>
</div>
</div>
</div>
</div>
</div>