Fix alignment of Close and Maximize button of Grant Wizard. Fixes #3906

This commit is contained in:
Akshay Joshi 2019-02-13 13:13:07 +05:30
parent 0aa93ac3ba
commit 10ee75bb1f
4 changed files with 3 additions and 3 deletions

View File

@ -16,6 +16,7 @@ Bug fixes
*********
| `Bug #3873 <https://redmine.postgresql.org/issues/3873>`_ - Fix context sub-menu alignment on Safari.
| `Bug #3906 <https://redmine.postgresql.org/issues/3906>`_ - Fix alignment of Close and Maximize button of Grant Wizard.
| `Bug #3942 <https://redmine.postgresql.org/issues/3942>`_ - Close connections gracefully when the user logs out of pgAdmin.
| `Bug #3963 <https://redmine.postgresql.org/issues/3963>`_ - Fix alignment of import/export toggle switch.
| `Bug #3974 <https://redmine.postgresql.org/issues/3974>`_ - Fix alignment of Connection type toggle switch of pgagent.

View File

@ -49,7 +49,6 @@
.wizard-header button {
padding: 10px;
margin-top: -1px;
margin-right: 8px;
}
.wizard-header .ajs-close.wizard-cancel-event {

View File

@ -85,7 +85,7 @@ define([
' <button class="ajs-close wizard-cancel-event pull-right"' +
' title="' + gettext('Close') + '"></button>' +
' <% if (this.options.show_header_maximize_btn) { %>' +
' <button class="ajs-maximize wizard-maximize-event pull-right"' +
' <button class="ajs-maximize wizard-maximize-event mr-1 pull-right"' +
' title="' + gettext('Maximize') + '"></button>' +
' <% } %>' +
' </div>' +

View File

@ -1,5 +1,5 @@
.wizard-header {
padding: 6px 10px!important;
padding: 6px!important;
min-height: $title-height;
max-height: $title-height;
background-color: $color-primary;