mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed the issue - preferences were saved.
It was regression of the commit-id:
533aaa2fa3.
This commit is contained in:
@@ -353,11 +353,11 @@ define(
|
|||||||
return {
|
return {
|
||||||
buttons:[
|
buttons:[
|
||||||
{
|
{
|
||||||
text: "{{ _(' <span class=button-label> OK </span>') }}", key: 13, className: "btn btn-primary fa fa-lg fa-save"
|
text: "{{ _('OK') }}", key: 13, className: "btn btn-primary fa fa-lg fa-save pg-alertify-button"
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "{{ _(' <span class=button-label> Cancel </span>') }}", className: "btn btn-danger fa fa-lg fa-close"
|
text: "{{ _('Cancel') }}", className: "btn btn-danger fa fa-lg fa-times pg-alertify-button"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
focus: { element: 0 },
|
focus: { element: 0 },
|
||||||
|
|||||||
@@ -351,21 +351,16 @@ iframe {
|
|||||||
border-left-style: solid
|
border-left-style: solid
|
||||||
}
|
}
|
||||||
|
|
||||||
.pg-prop-btn-group-below .pg-prop-btn-group button {
|
.pg-prop-btn-group button {
|
||||||
margin: 2px 5px;
|
margin: 2px 3px 2px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pg-prop-btn-group button:not(:first-child):not(:last-child) {
|
.pg-prop-btn-group button:first-child {
|
||||||
margin-left: 0px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pg-prop-btn-group-below button:not(:first-child):not(:last-child) {
|
.pg-prop-btn-group button:last-child {
|
||||||
margin-left: 2px;
|
margin-right: 3px;
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary{
|
|
||||||
margin: 2px 13px !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pg-prop-content {
|
.pg-prop-content {
|
||||||
@@ -1013,13 +1008,13 @@ ul.nav.nav-tabs {
|
|||||||
.alertify .ajs-footer .ajs-buttons.ajs-auxiliary .ajs-button, .alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
|
.alertify .ajs-footer .ajs-buttons.ajs-auxiliary .ajs-button, .alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
margin-top:0px;
|
margin-top:2px;
|
||||||
margin-bottom:0px;
|
margin-bottom:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alertify .ajs-footer .ajs-buttons .ajs-button {
|
.alertify .ajs-footer .ajs-buttons .ajs-button {
|
||||||
min-width: 55px;
|
min-width: 80px;
|
||||||
min-height: 33px;
|
min-height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alertify .ajs-commands {
|
.alertify .ajs-commands {
|
||||||
@@ -1087,9 +1082,14 @@ ul.nav.nav-tabs {
|
|||||||
background-image:none;
|
background-image:none;
|
||||||
}
|
}
|
||||||
span.button-label {
|
span.button-label {
|
||||||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||||
font-size: initial;
|
font-size: initial;
|
||||||
|
}
|
||||||
|
button.pg-alertify-button {
|
||||||
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||||
|
font-size: initial;
|
||||||
|
}
|
||||||
|
.fa.pg-alertify-button:before {
|
||||||
|
font: normal normal normal 18px/1 FontAwesome;
|
||||||
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
button.ajs-button.btn.btn-primary {
|
|
||||||
margin: 2px!important;
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user