2016-04-13 16:11:43 +01:00
|
|
|
/** CSS for Wizard **/
|
|
|
|
|
|
|
|
|
|
.wizard_dlg {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2021-09-23 16:59:59 +05:30
|
|
|
overflow-y: hidden;
|
2016-04-13 16:11:43 +01:00
|
|
|
}
|
|
|
|
|
|
2016-05-13 15:04:36 +05:30
|
|
|
.pgadmin-wizard {
|
2016-04-13 16:11:43 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-13 15:04:36 +05:30
|
|
|
.wizard-right-panel {
|
2016-04-13 16:11:43 +01:00
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-13 15:04:36 +05:30
|
|
|
.wizard-left-panel {
|
2016-04-13 16:11:43 +01:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-13 15:04:36 +05:30
|
|
|
.wizard-left-panel img {
|
2016-04-13 16:11:43 +01:00
|
|
|
width: 140px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Wizard Footer CSS */
|
2016-06-08 14:08:12 +01:00
|
|
|
.pgadmin-wizard .footer .row {
|
|
|
|
|
margin: 0 -6px 3px -6px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-13 16:11:43 +01:00
|
|
|
/* Wizard Status bar CSS */
|
2016-05-13 15:04:36 +05:30
|
|
|
.pgadmin-wizard .wizard-description {
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 17:14:55 +05:30
|
|
|
padding: 0.5rem 0rem;
|
2016-04-13 16:11:43 +01:00
|
|
|
}
|
|
|
|
|
|
2022-09-08 15:16:48 +05:30
|
|
|
/* In wizard select2 dropdown doesn't popup.
|
2016-04-13 16:11:43 +01:00
|
|
|
* wizard is greater than the z-index
|
|
|
|
|
* of select2 dropdown. To make select2
|
|
|
|
|
* visible, set z-index of select2
|
|
|
|
|
* higher value than wizard's
|
|
|
|
|
*/
|
|
|
|
|
.select2-container--open {
|
|
|
|
|
z-index: 10000;
|
2016-05-25 17:40:36 +05:30
|
|
|
}
|
2018-11-27 10:57:30 +00:00
|
|
|
|
|
|
|
|
.wizard-content h3 {
|
|
|
|
|
margin-top: 20px !important;
|
|
|
|
|
margin-bottom: 10px !important;
|
|
|
|
|
}
|
2021-09-20 13:02:41 +05:30
|
|
|
|
|
|
|
|
.wizard {
|
|
|
|
|
width: 100%;
|
|
|
|
|
/*height: 550px;*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.step {
|
|
|
|
|
height: inherit;
|
|
|
|
|
width: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wizard-footer {
|
|
|
|
|
border-top: 1px solid #dde0e6 !important;
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
}
|