ARTEMIS-2114 hawtio dest delete/purge buttons overlap if pane resized

Changing the view layout from horizontal to vertical avoid the resizing
issue
This commit is contained in:
Francesco Nigro 2018-10-08 15:54:12 +02:00
parent 65feda8e92
commit d603332a8f
1 changed files with 13 additions and 10 deletions

View File

@ -24,19 +24,22 @@
<strong>Warning:</strong> these operations cannot be undone. Please be careful!
</div>
</div>
<h4>Queue '{{name().unescapeHTML()}}'</h4>
</div>
<div class="row-fluid">
<div class="span4">
<div class="control-group">
<button type="submit" class="btn btn-warning" ng-click="deleteDialog = true">Delete queue '{{name().unescapeHTML()}}'</button>
<label>This will remove the queue completely.</label>
</div>
<div class="control-group">
<hr>
<h5>Purge queue</h5>
<p>Purge all the current messages on the queue.</p>
<button type="submit" class="btn btn-warning" ng-click="purgeDialog = true">Purge queue</button>
</div>
<div class="span4">
<div class="control-group">
<button type="submit" class="btn btn-warning" ng-click="purgeDialog = true">Purge queue '{{name().unescapeHTML()}}'</button>
<label>Purges all the current messages on the queue.</label>
</div>
</div>
<div class="row-fluid">
<div class="control-group">
<hr>
<h5>Delete queue</h5>
<p>Remove the queue completely.</p>
<button type="submit" class="btn btn-warning" ng-click="deleteDialog = true">Delete queue</button>
</div>
</div>