Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
avoid the icky buttons for now - we can style it better later ;)
  • Loading branch information
jstrachan committed Sep 13, 2013
1 parent 73c0a60 commit b41ee06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hawtio-web/src/main/webapp/app/fabric/html/containers.html
Expand Up @@ -13,20 +13,20 @@
<div class="section-title"></div>

<div class="section-controls">
<a class="btn" ng-click="createContainer()" title="Create new containers">
<a class="" ng-click="createContainer()" title="Create new containers">
<i class="icon-plus"></i> Create
</a>
<a class="btn" ng-click="startSelectedContainers()" ng-show="anySelectionAlive(false)"
<a class="" ng-click="startSelectedContainers()" ng-show="anySelectionAlive(false)"
title="Start Containers">
<i class="icon-play-circle clickable"></i>
Start
</a>
<a class="btn" ng-click="stopSelectedContainers()" ng-show="anySelectionAlive(true)"
<a class="" ng-click="stopSelectedContainers()" ng-show="anySelectionAlive(true)"
title="Stop Containers">
<i class="icon-off"></i>
Stop
</a>
<a class="btn btn-danger" ng-click="deleteSelectedContainers()" ng-show="selectedContainers.length != 0"
<a class="nav-danger" ng-click="deleteSelectedContainers()" ng-show="selectedContainers.length != 0"
title="Delete Container">
<i class="icon-minus"></i> Delete
</a>
Expand Down

0 comments on commit b41ee06

Please sign in to comment.