Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    IButton shadow bug

    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:
    Code:
    VLayout vLayout = new VLayout(10);
    vLayout.setWidth(440);
    vLayout.setHeight(100);
    		vLayout.setDefaultLayoutAlign(VerticalAlignment.CENTER);
    		
    IButton button = new IButton("Test");    	
    vLayout.addMember(button);
    I've checked in Firebug buttons div gets manual style:
    Code:
    box-shadow: 0px -1px 1px;
    and on click:
    Code:
    box-shadow: 0px 1px 2px;
    It happens only on Firefox. On Chrome style is not added.

    Best regards
    Mariusz Goch
    Attached Files

    #2
    This was a temporary regression, already corrected in the latest build. It appears that, despite referring to the latest build and naming your screenshot 7/22, you are actually testing 7/19 or earlier.

    Comment


      #3
      Yes. That's right. Got the wrong info from testing.
      By the way didn't expected daily changes in stable. ;)
      Checked in version 4.1p-2013-07-23 and it works fine.

      Best regards
      Mariusz Goch

      Comment

      Working...
      X