Hi,
In latest SmartGWT nightly 4.1p there is a bug with IButton shadow on over and down event.
Shadow is drawn around button like it was repeated.
It only affects IButton that is inside bigger layout.
And it's only visible on Firefox.
Test case:
I've checked in Firebug buttons div gets manual style:
and on click:
It happens only on Firefox. On Chrome style is not added.
Best regards
Mariusz Goch
In latest SmartGWT nightly 4.1p there is a bug with IButton shadow on over and down event.
Shadow is drawn around button like it was repeated.
It only affects IButton that is inside bigger layout.
And it's only visible on Firefox.
Test case:
Code:
VLayout vLayout = new VLayout(10); vLayout.setWidth(440); vLayout.setHeight(100); vLayout.setDefaultLayoutAlign(VerticalAlignment.CENTER); IButton button = new IButton("Test"); vLayout.addMember(button);
Code:
box-shadow: 0px -1px 1px;
Code:
box-shadow: 0px 1px 2px;
Best regards
Mariusz Goch
Comment