Skip to content

Commit

Permalink
Merge pull request kitodo#6310 from effective-webwork/3-8-progress-bar
Browse files Browse the repository at this point in the history
[3.8] Show progress bar on task manager page
  • Loading branch information
solth authored Dec 7, 2024
2 parents caeaf27 + 12340d9 commit a14ab6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,9 @@ tr.ui-expanded-row-content:hover .ui-datatable tbody {
color: var(--carbon-blue) !important;
}

.ui-progressbar-determinate .ui-progressbar-label {
line-height: initial;
}

.ui-picklist-caption {
border-bottom: 1px solid var(--carbon-blue) !important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
<p:column headerText="#{msgs.title}">
<h:outputText value="#{item.name}"/>
</p:column>
<p:column headerText="#{msgs.progress}">
<h:outputText value="#{item.progress}%"/>
<p:column headerText="#{msgs.progress}" width="200">
<p:progressBar value="#{item.progress}"
labelTemplate="{value}%"/>
</p:column>
<p:column headerText="#{msgs.status}">
<h:outputText value="#{item.stateDescription}"/>
Expand Down

0 comments on commit a14ab6d

Please sign in to comment.