1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/13740] Implement progress bar for AJAX UI

PHPBB3-13740
This commit is contained in:
MateBartus
2015-06-03 01:31:48 +02:00
committed by Mate Bartus
parent 37b0134aa4
commit b7ef709549
3 changed files with 146 additions and 35 deletions

View File

@@ -2521,3 +2521,30 @@ fieldset.permissions .padding {
clear: both;
display: block;
}
#progress-bar {
position: relative;
width: 90%;
height: 25px;
margin: 20px auto;
border: 1px solid #cecece;
}
#progress-bar #progress-bar-text {
position: absolute;
top: 0;
width: 100%;
text-align: center;
line-height: 25px;
font-weight: bold;
}
#progress-bar #progress-bar-filler {
display: block;
position: relative;
top: 0;
left: 0;
background-color: #3c84ad;
width: 0;
height: 25px;
}