mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Update to use Bootstrap 3 instead of Bootstrap 4. Fixes #3562
This commit is contained in:
committed by
Dave Page
parent
bdf90e67a7
commit
0565f8dd78
@@ -158,7 +158,7 @@ class BackupMessage(IProcessDesc):
|
||||
def details(self, cmd, args):
|
||||
name, host, port = self.get_server_details()
|
||||
|
||||
res = '<div class="h5">'
|
||||
res = '<div>'
|
||||
|
||||
if self.backup_type == BACKUP.OBJECT:
|
||||
res += _(
|
||||
@@ -193,7 +193,7 @@ class BackupMessage(IProcessDesc):
|
||||
# It should never reach here.
|
||||
res += "Backup"
|
||||
|
||||
res += '</div><div class="h5">'
|
||||
res += '</div><div>'
|
||||
res += _("Running command:")
|
||||
res += '</b><br><span class="pg-bg-cmd enable-selection">'
|
||||
res += html.safe_str(cmd + self.cmd)
|
||||
|
||||
@@ -29,8 +29,8 @@ export class BackupDialogWrapper extends DialogWrapper {
|
||||
setup() {
|
||||
return {
|
||||
buttons: [{
|
||||
text: '',
|
||||
className: 'btn btn-default pull-left fa fa-lg fa-info',
|
||||
text: '<span class="fa fa-lg fa-info"></span>',
|
||||
className: 'btn btn-default pull-left',
|
||||
attrs: {
|
||||
name: 'object_help',
|
||||
type: 'button',
|
||||
@@ -38,9 +38,9 @@ export class BackupDialogWrapper extends DialogWrapper {
|
||||
label: gettext('Backup'),
|
||||
},
|
||||
}, {
|
||||
text: '',
|
||||
text: '<span class="fa fa-lg fa-question"></span>',
|
||||
key: 112,
|
||||
className: 'btn btn-default pull-left fa fa-lg fa-question',
|
||||
className: 'btn btn-default pull-left',
|
||||
attrs: {
|
||||
name: 'dialog_help',
|
||||
type: 'button',
|
||||
|
||||
Reference in New Issue
Block a user