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:
Murtuza Zabuawala 2018-12-13 10:28:58 +00:00 committed by Dave Page
parent 90b2d2e536
commit 04735e631e
2 changed files with 2 additions and 6 deletions

View File

@ -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;
}

View File

@ -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'),