Give backup progress detail more horizontal space

This commit is contained in:
Johannes Zellner
2018-12-09 21:01:46 +01:00
parent a888ec265f
commit 226162ee57

View File

@@ -217,13 +217,13 @@
</div>
<div class="row">
<div class="col-md-6">
<div class="col-md-8">
<p ng-show="createBackup.busy">{{ createBackup.message }}</p>
<p ng-hide="createBackup.busy">
<div class="has-error" ng-show="createBackup.percent === 100">{{ createBackup.errorMessage }}</div>
</p>
</div>
<div class="col-md-6 text-right">
<div class="col-md-4 text-right">
<button class="btn btn-outline btn-primary pull-right" ng-click="configureBackup.show()" ng-disabled="createBackup.busy" ng-show="!config.managed">Configure</button>
<button class="btn btn-outline btn-primary" ng-click="createBackup.startBackup()" ng-show="!createBackup.busy" style="margin-right: 10px">Backup now</button>
<button class="btn btn-outline btn-danger" ng-click="createBackup.stopBackup()" ng-show="createBackup.busy" style="margin-right: 10px">Stop Backup</button>