commit
f66e48f258
|
@ -235,9 +235,10 @@ define([
|
||||||
onResize: function() {
|
onResize: function() {
|
||||||
if (this.openButton) {
|
if (this.openButton) {
|
||||||
var button = $('button', this.openButton.cmpEl);
|
var button = $('button', this.openButton.cmpEl);
|
||||||
button && button.css({
|
var cntButton = $('.button', this.cmpEl);
|
||||||
width : $('.button', this.cmpEl).width(),
|
button && cntButton.width() > 0 && button.css({
|
||||||
height: $('.button', this.cmpEl).height()
|
width : cntButton.width(),
|
||||||
|
height: cntButton.height()
|
||||||
});
|
});
|
||||||
|
|
||||||
this.openButton.menu.hide();
|
this.openButton.menu.hide();
|
||||||
|
|
|
@ -164,6 +164,11 @@
|
||||||
width: @combo-dataview-button-width;
|
width: @combo-dataview-button-width;
|
||||||
height: @combo-dataview-height;
|
height: @combo-dataview-height;
|
||||||
|
|
||||||
|
.btn-group, button {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
&.dropdown-toggle {
|
&.dropdown-toggle {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
Loading…
Reference in a new issue