mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 16:57:00 -06:00
7edcca9b07
Fixed text color issue in explain analyze for the Dark theme. Fixes #5677
52 lines
1.0 KiB
SCSS
52 lines
1.0 KiB
SCSS
.wizard-header {
|
|
padding: 6px!important;
|
|
min-height: $title-height;
|
|
max-height: $title-height;
|
|
background-color: $alert-header-bg;
|
|
font-size: $font-size-base;
|
|
font-weight: bold;
|
|
color: $alert-header-fg;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
border-radius: 0rem;
|
|
border-top-left-radius: $panel-border-radius;
|
|
border-top-right-radius: $panel-border-radius;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.wizard-content {
|
|
position: absolute;
|
|
overflow: auto;
|
|
top: $title-height;
|
|
bottom: $footer-height-calc; //similar to alertify footer
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.pgadmin-wizard .wizard-buttons {
|
|
border-top: $panel-border;
|
|
padding: $footer-padding
|
|
}
|
|
|
|
/* match the alertify footer */
|
|
.pgadmin-wizard .wizard-footer {
|
|
min-height: $footer-min-height;
|
|
border: none;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Error message css */
|
|
.pgadmin-wizard .error_msg_div {
|
|
background: $color-bg;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.pgadmin-wizard .error_msg_div p {
|
|
background: $color-bg;
|
|
color: $color-danger;
|
|
}
|