mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-04 05:12:30 +00:00 
			
		
		
		
	- rvitals done - frame view fixed git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2511 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 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;
 | 
						|
}
 | 
						|
 | 
						|
.WizardInputSection { background-color: #EAEAFF; /* #E5E5FF; */ }
 | 
						|
 | 
						|
.NonCurrentSummaryItem {}
 | 
						|
 | 
						|
.CurrentSummaryItem { background-color: yellow; }
 | 
						|
 | 
						|
.WizardInputTable {
 | 
						|
 margin-bottom: 20px;
 | 
						|
}
 | 
						|
 | 
						|
.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; }
 | 
						|
 | 
						|
.WizardProgressTable P#output { margin-left: 35px; }
 | 
						|
 | 
						|
.WizardProgressTable IFRAME#output { margin-left: 35px; width: 400px; }
 | 
						|
 | 
						|
.WizardProgressOutput { margin: 0px; }
 | 
						|
 | 
						|
.WizardProgressCurrent {
 | 
						|
 /* font-weight: bold; */
 | 
						|
 background-color: #D8E8FF;  /* yellow; */
 | 
						|
 }
 |