if (data.step == 'success') {
this._purgeTemplateContent($.proxy(function() {
var $id = WCF.getRandomID();
- $('#packageInstallationInnerContent').append('<div class="wcf-formSubmit"><input type="button" id="' + $id + '" value="' + WCF.Language.get('wcf.global.button.next') + '" class="default" /></div>');
+ $('#packageInstallationInnerContent').append('<div class="formSubmit"><input type="button" id="' + $id + '" value="' + WCF.Language.get('wcf.global.button.next') + '" /></div>');
$('#' + $id).click(function() {
window.location.href = data.redirectLocation;
// create button to handle next step
if (data.step && data.node) {
var $id = WCF.getRandomID();
- $('#packageInstallationInnerContent').append('<div class="wcf-formSubmit"><input type="button" id="' + $id + '" value="' + WCF.Language.get('wcf.global.button.next') + '" class="default" /></div>');
+ $('#packageInstallationInnerContent').append('<div class="formSubmit"><input type="button" id="' + $id + '" value="' + WCF.Language.get('wcf.global.button.next') + '" /></div>');
$('#' + $id).click($.proxy(function() {
// collect form values
<div id="packageInstallationDialogContainer">
- <header class="wcf-container wcf-mainHeading">
- <img src="{@$__wcf->getPath()}icon/working2.svg" alt="" class="wcf-containerIcon" />
- <hgroup class="wcf-containerContent">
+ <header class="box48 boxHeadline">
+ <img src="{@$__wcf->getPath()}icon/working2.svg" alt="" class="icon48" />
+ <hgroup>
<h1>{lang}wcf.acp.package.installation.title{/lang}</h1>
<h2 id="packageInstallationAction">{lang}wcf.acp.package.installation.step.prepare{/lang}</span></h2>
- <p><progress id="packageInstallationProgress" value="0" max="100">0%</progress> <span id="packageInstallationProgressLabel">0%</span></p>
+ <small><progress id="packageInstallationProgress" value="0" max="100">0%</progress> <span id="packageInstallationProgressLabel">0%</span></small>
</hgroup>
</header>