Make background of some ProgressBars transparent

This commit is contained in:
Johannes Zellner
2026-01-14 11:51:35 +01:00
parent 1f7b0c076c
commit 9774a17f7e
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -295,7 +295,7 @@ onBeforeUnmount(() => {
<a class="applink" :href="link || null" target="_blank">{{ app.label || app.fqdn }}</a>
<div class="statelabel" v-if="app.error">{{ installationStateLabel(app) }} - {{ app.error.message }}</div>
<div class="statelabel" v-else>{{ installationStateLabel(app) }} {{ app.message ? ' - ' + app.message : '' }}</div>
<ProgressBar v-if="app.progress" :busy="true" slim :value="app.progress" :show-label="false" style="margin-top: 10px"/>
<ProgressBar v-if="app.progress" :busy="true" :show-track="false" slim :value="app.progress" :show-label="false" style="margin-top: 10px"/>
</h2>
</div>