Fix bug 51932

This commit is contained in:
JuliaSvinareva 2021-08-13 14:10:10 +03:00
parent 1b508fec3f
commit 0f58531403
2 changed files with 9 additions and 3 deletions

View file

@ -235,9 +235,10 @@ define([
onResize: function() {
if (this.openButton) {
var button = $('button', this.openButton.cmpEl);
button && button.css({
width : $('.button', this.cmpEl).width(),
height: $('.button', this.cmpEl).height()
var cntButton = $('.button', this.cmpEl);
button && cntButton.width() > 0 && button.css({
width : cntButton.width(),
height: cntButton.height()
});
this.openButton.menu.hide();

View file

@ -164,6 +164,11 @@
width: @combo-dataview-button-width;
height: @combo-dataview-height;
.btn-group, button {
width: 100%;
height: 100%;
}
button {
&.dropdown-toggle {
padding: 0;