Show new-version indicator on button as well

This commit is contained in:
Daniel Brendel
2025-02-15 12:50:52 +01:00
parent 8cc4458b44
commit df1467bd01
3 changed files with 9 additions and 1 deletions
+5
View File
@@ -157,6 +157,11 @@ h2 {
z-index: 5;
}
.is-indicator-button {
display: inline-block;
left: -18px;
}
.is-background-success-light {
background-color: rgb(215, 253, 200);
}
+3
View File
@@ -1028,6 +1028,9 @@
<?php if (env('APP_SERVICE_URL')) { ?>
<div class="version-check">
<a class="button is-link" href="{{ url('/admin?cv=1&tab=info') }}">{{ __('app.check_for_new_version') }}</a>
@if (VersionModule::getCachedVersion() > config('version'))
<i class="is-indicator-tab is-indicator-button"></i>
@endif
</div>
<?php } ?>
<?php } ?>
+1 -1
View File
File diff suppressed because one or more lines are too long