mirror of https://github.com/apache/cloudstack.git
Fix BG
This commit is contained in:
parent
1244cd6985
commit
d623ddad5e
|
|
@ -29,7 +29,14 @@ body {
|
|||
font-family: sans-serif;
|
||||
height: 769px !important;
|
||||
overflow: auto;
|
||||
background: url(../images/bg-login.png);
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
body.install-wizard {
|
||||
font-family: sans-serif;
|
||||
height: 769px !important;
|
||||
overflow: auto;
|
||||
background: #FFFFFF url(../images/bg-login.png);
|
||||
}
|
||||
|
||||
#container {
|
||||
|
|
|
|||
|
|
@ -301,6 +301,7 @@
|
|||
});
|
||||
|
||||
$advanced.click(function() {
|
||||
$('html body').removeClass('install-wizard');
|
||||
complete();
|
||||
|
||||
return false;
|
||||
|
|
@ -718,6 +719,8 @@
|
|||
.html('You may now continue.');
|
||||
var $continue = elems.nextButton('Launch');
|
||||
|
||||
$('html body').removeClass('install-wizard');
|
||||
|
||||
showDiagram('');
|
||||
|
||||
$continue.click(function() {
|
||||
|
|
@ -734,6 +737,7 @@
|
|||
|
||||
var initialStep = steps.intro().addClass('step');
|
||||
showDiagram('');
|
||||
$('html body').addClass('install-wizard');
|
||||
|
||||
$installWizard.append(
|
||||
elems.header(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue