Add action item tooltips

This commit is contained in:
Johannes Zellner
2020-06-11 19:32:23 +02:00
parent 4aca2b64b9
commit 3dd659639d
2 changed files with 7 additions and 3 deletions

View File

@@ -132,9 +132,9 @@
</div>
<div class="grid-item-actions" ng-show="user.isAtLeastAdmin">
<a ng-href="#/app/{{ app.id}}/display"><i class="fas fa-cogs"></i></a>
<a ng-href="" class="hand" ng-click="appInfo.show(app)"><i class="fas fa-info-circle"></i></a>
<a ng-href="{{ '/logs.html?appId=' + app.id }}" target="_blank"><i class="fas fa-align-left"></i></a>
<a ng-href="#/app/{{ app.id}}/display" uib-tooltip="Config" tooltip-placement="right" tooltip-class="grid-items-action-tooltip"><i class="fas fa-cogs"></i></a>
<a ng-href="" class="hand" ng-click="appInfo.show(app)" uib-tooltip="Info" tooltip-placement="right" tooltip-class="grid-items-action-tooltip"><i class="fas fa-info-circle"></i></a>
<a ng-href="{{ '/logs.html?appId=' + app.id }}" target="_blank" uib-tooltip="Logs" tooltip-placement="right" tooltip-class="grid-items-action-tooltip"><i class="fas fa-align-left"></i></a>
</div>
<!-- we check the version here because the box updater does not know when an app gets updated -->