2016-04-13 10:11:43 -05:00
|
|
|
/** CSS for Wizard **/
|
|
|
|
|
|
|
|
.wizard-header h3 {
|
2016-04-17 08:08:03 -05:00
|
|
|
font-size: 14px;
|
2016-04-13 10:11:43 -05:00
|
|
|
display: inline-block;
|
2016-04-17 08:08:03 -05:00
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 0px;
|
2016-04-13 10:11:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.wizard_dlg {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-05-13 04:34:36 -05:00
|
|
|
.pgadmin-wizard {
|
2016-04-13 10:11:43 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-05-13 04:34:36 -05:00
|
|
|
.wizard-right-panel {
|
2016-04-13 10:11:43 -05:00
|
|
|
overflow-y: auto;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 04:34:36 -05:00
|
|
|
.wizard-left-panel {
|
2016-04-13 10:11:43 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 04:34:36 -05:00
|
|
|
.wizard-left-panel img {
|
2016-04-13 10:11:43 -05:00
|
|
|
width: 140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wizard Footer CSS */
|
2016-06-08 08:08:12 -05:00
|
|
|
.pgadmin-wizard .footer .row {
|
|
|
|
margin: 0 -6px 3px -6px;
|
|
|
|
}
|
|
|
|
|
2019-01-15 01:29:09 -06:00
|
|
|
.wizard-header button {
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: -1px;
|
2016-05-25 07:10:36 -05:00
|
|
|
}
|
|
|
|
|
2019-01-15 01:29:09 -06:00
|
|
|
.wizard-header .ajs-close.wizard-cancel-event {
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAdklEQVQ4jd2SwQnAIAxF36GH0pOTFHEgF3IkR5LO0F4SCGJVEHroAy/f/E+igV+yAa6hO7nrcgAZuIBg9CBalppXEnDL0RA1q556ASdQqhBrLlLTxVch1uxHZiU2AuKs2Vdt23GGHSy/wfIvzOzBPhpjaRO/5wG/szevJ+ZXzAAAAABJRU5ErkJggg==) no-repeat center center;
|
|
|
|
}
|
2017-01-08 04:35:34 -06:00
|
|
|
|
2019-01-15 01:29:09 -06:00
|
|
|
.wizard-header .ajs-maximize.wizard-maximize-event {
|
2017-01-08 04:35:34 -06:00
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAZklEQVQ4jcWTuw2AMAxEn5jBs7B/e0gpmAiKEGRS5QDBSS7v+Q8fSsCWQgDTA+DsGgJYuypumTNkWCWZg9q/HIAOSDim/xTUcu0exXXaxQG0teRVWQPLx2Gbe8B55yNqv7C4GV/TDq//J11odoZgAAAAAElFTkSuQmCC) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
2019-01-15 01:29:09 -06:00
|
|
|
.wizard-header .ajs-maximized.wizard-maximize-event {
|
2017-01-08 04:35:34 -06:00
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA8klEQVQ4jZ3QMUpDQRCH8V+ewULQE4iERTyCrQiDCpbaCKKljbV4A89gqVgGrCMDWlpaWwVPoFYiIjYv8hBJXjLN7s7u9+3wZ4aKiOWI2IJOi8dHuM7MXxj3WMHe3CRBKeUGvVJKllJG8CrmoNty6jMsYKeGoY/jtgI4bez7OMjMr2oKwaieRzDMIljDRUSgXQZPeG2cv7GOffQ7ETGPcyw2HozWQWY+jLN3M/MzIu4wwNKf+zeMFVSQmY/YbfzeuiqIiAonZgi1quErHNa9F7xPM8FlAx5iA9ttJRVu8VHDm5k5rDNpLRERWxHR+6c/MZMfLIJDwzY66IkAAAAASUVORK5CYII=) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
2016-04-13 10:11:43 -05:00
|
|
|
/* Wizard Status bar CSS */
|
2016-05-13 04:34:36 -05:00
|
|
|
.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 05:44:55 -06:00
|
|
|
padding: 0.5rem 0rem;
|
2016-04-13 10:11:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* In wizard select2 dropdown doesn't
|
|
|
|
* popup because z-index of alertify
|
|
|
|
* 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 07:10:36 -05:00
|
|
|
}
|
2018-11-27 04:57:30 -06:00
|
|
|
|
|
|
|
.wizard-content h3 {
|
|
|
|
margin-top: 20px !important;
|
|
|
|
margin-bottom: 10px !important;
|
|
|
|
}
|