1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-03 21:15:42 +02:00

Merge pull request #4068 from marc1706/ticket/14310

[ticket/14310] Put progress percentage inside span and make more visible

* marc1706/ticket/14310:
  [ticket/14310] Put progress percentage inside span and make more visible
This commit is contained in:
Tristan Darricau 2015-12-07 21:05:03 +01:00
commit f08c774485
2 changed files with 2 additions and 1 deletions

View File

@ -2566,6 +2566,7 @@ fieldset.permissions .padding {
text-align: center;
line-height: 25px;
font-weight: bold;
color: #fff;
}
#progress-bar #progress-bar-filler {

View File

@ -191,12 +191,12 @@
$progressText.attr('id', 'progress-bar-text');
$progressFiller = $('<span />');
$progressFiller.attr('id', 'progress-bar-filler');
$progressFiller.html($progressText);
$statusText = $('<p />');
$statusText.attr('id', 'progress-status-text');
$progressBar.append($progressFiller);
$progressBar.append($progressText);
$progressBarWrapper.append($statusText);
$progressBarWrapper.append($progressBar);