diff --git a/typo3/sysext/install/Resources/Private/Templates/Upgrade/UpgradeWizards.html b/typo3/sysext/install/Resources/Private/Templates/Upgrade/UpgradeWizards.html
index 5dffac5059e98bb4ce3bf8a783fb28df930fc591..bf136e695787df456bfae89d842ebf95b4f7aaf6 100644
--- a/typo3/sysext/install/Resources/Private/Templates/Upgrade/UpgradeWizards.html
+++ b/typo3/sysext/install/Resources/Private/Templates/Upgrade/UpgradeWizards.html
@@ -101,7 +101,8 @@
 
 <hr>
 
-<h4>Available wizards</h4>
+<h4>Upgrade status</h4>
+<p>Progress of upgrade wizards:</p>
 <div class="upgradeWizards-wizards-output t3js-upgradeWizards-wizards-output"></div>
 
 <hr>
diff --git a/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js b/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js
index f29199663f7ba3b66297ab6b953d9cb43fc28785..aa426e246ee770d61d17e354504be1b6dd24d32f 100644
--- a/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js
+++ b/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js
@@ -296,6 +296,10 @@ define([
               var percent = 100;
               if (numberOfWizardsTodo > 0) {
                 percent = ((numberOfWizards - numberOfWizardsTodo) / data.wizards.length) * 100;
+              } else {
+                list.find('.progress-bar')
+                  .removeClass('progress-bar-info')
+                  .addClass('progress-bar-success');
               }
               list.find('.progress-bar')
                 .css('width', percent + '%')