286cb7c4be
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2456 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
51 lines
1.1 KiB
CSS
51 lines
1.1 KiB
CSS
|
|
/* Styles specific to the wizards */
|
|
|
|
#outerWizardPane {
|
|
/* position: relative; so the h3 inside can be absolute to this div */
|
|
/* border: 1px solid black; */
|
|
background-color: #CCCCFF;
|
|
margin: 0px 20px 15px 20px;
|
|
padding: 5px 0px;
|
|
}
|
|
|
|
#wizardHeading { /* the inner pane where the wizard page contents goes */
|
|
/* position: absolute; move this up so it is part of the outerWizardPane border
|
|
top: -25px;
|
|
left: 50px;
|
|
background-color: white;
|
|
padding: 0px 5px; */
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#wizardPane {
|
|
background-color: white;
|
|
padding: 10px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.NonCurrentSummaryItem {}
|
|
|
|
.CurrentSummaryItem { background-color: yellow; }
|
|
|
|
.WizardProgressTable {
|
|
margin: 10px 0px;
|
|
/* text-align: left; */
|
|
}
|
|
|
|
.WizardProgressTable UL { list-style-type: none; }
|
|
|
|
.WizardProgressTable LI {
|
|
/* list-style-image: url('../images/checked-box.gif'); */
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.WizardProgressTable IMG { margin-right: 1em; margin-left: 1em; }
|
|
|
|
.WizardProgressCurrent {
|
|
/* font-weight: bold; */
|
|
background-color: #D8E8FF; /* yellow; */
|
|
}
|