Skip to content

Commit 2f9ce76

Browse files
author
Phil E. Taylor
authored
[4] Fix spinner bg (#35339)
1 parent a95ef91 commit 2f9ce76

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<button class="nav-link d-flex justify-content-between align-items-center" id="joomlaupdate-precheck-extensions-tab" data-bs-toggle="pill" data-bs-target="#joomlaupdate-precheck-extensions-content" type="button" role="tab" aria-controls="joomlaupdate-precheck-extensions-content" aria-selected="false">
118118
<?php echo Text::_('COM_JOOMLAUPDATE_PREUPDATE_EXTENSIONS'); ?>
119119
<?php $labelClass = 'success'; ?>
120-
<span class="fa fa-spinner fa-spin fa-fw py-1 bg-white ms-2 text-info" aria-hidden="true"></span>
120+
<span class="fa fa-spinner fa-spin fa-fw py-1 ms-2" aria-hidden="true"></span>
121121
</button>
122122
</div>
123123

build/media_source/com_joomlaupdate/js/default.es6.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ Joomla = window.Joomla || {};
123123
default:
124124
}
125125
if (infoIcon) {
126-
infoIcon.classList.remove('fa-spinner', 'fa-spin', 'text-info');
127-
infoIcon.classList.add(`fa-${iconClass}`, `text-${iconColor}`);
126+
infoIcon.classList.remove('fa-spinner', 'fa-spin');
127+
infoIcon.classList.add(`fa-${iconClass}`, `text-${iconColor}`, 'bg-white');
128128
}
129129
// Hide table of addons to load
130130
const checkedExtensions = document.querySelector('#compatibilityTable0');

0 commit comments

Comments
 (0)