Change the update notification badge

This commit is contained in:
Johannes Zellner
2017-08-02 21:43:55 +02:00
parent fbce71d031
commit 53afb2606a
2 changed files with 7 additions and 2 deletions

View File

@@ -220,7 +220,7 @@ h1, h2, h3 {
.grid-item-bottom {
display: none;
position: absolute;
top: 10px;
top: 20px;
padding: 10px 15px;
right: -10px;
opacity: 0;

View File

@@ -453,7 +453,12 @@
<!-- we check the version here because the box updater does not know when an app gets updated -->
<div class="app-update-badge" ng-show="config.update.apps[app.id].manifest.version && config.update.apps[app.id].manifest.version !== app.manifest.version && (app | installSuccess)">
<a href="" ng-click="showUpdate(app, config.update.apps[app.id].manifest)" title="Update Available"><i class="fa fa-asterisk fa-2x text-success scale"></i></a>
<a href="" ng-click="showUpdate(app, config.update.apps[app.id].manifest)" title="Update Available">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x text-success"></i>
<i class="fa fa-refresh fa-stack-1x fa-inverse"></i>
</span>
</a>
</div>
</a>
</div>