mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Minor bootstrap 4 fixes:
- Removed 'collapse in' css from wizard as we have 'collapse show' in Bootstrap-4 - Fixed 'Select/Unselect All' button layout for Select2 control used in pgAgent.
This commit is contained in:
parent
90b2d2e536
commit
04735e631e
@ -126,7 +126,3 @@ div.wizard-header.wizard-badge > div > div.col-sm-2 > button.ajs-maximized.ajs-m
|
||||
margin-top: 20px !important;
|
||||
margin-bottom: 10px !important;
|
||||
}
|
||||
|
||||
.wizard-right-panel_content .collapse.in {
|
||||
display: block;
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ define([
|
||||
let $rendered = decorated.call(this);
|
||||
|
||||
let $selectAll = $([
|
||||
'<button class="btn btn-xs btn-default" type="button"',
|
||||
'<button class="btn btn-default btn-sm" type="button"',
|
||||
' style="width: 49%;margin: 0 0.5%;">',
|
||||
'<i class="fa fa-check-square-o"></i>',
|
||||
'<span style="padding: 0px 5px;">',
|
||||
@ -30,7 +30,7 @@ define([
|
||||
].join(''));
|
||||
|
||||
let $unselectAll = $([
|
||||
'<button class="btn btn-xs btn-default" type="button"',
|
||||
'<button class="btn btn-default btn-sm" type="button"',
|
||||
' style="width: 49%;margin: 0 0.5%;">',
|
||||
'<i class="fa fa-square-o"></i><span style="padding: 0px 5px;">',
|
||||
gettext('Unselect All'),
|
||||
|
Loading…
Reference in New Issue
Block a user