Changeset 5273

Show
Ignore:
Timestamp:
08/27/08 07:20:28 (3 months ago)
Author:
matti.tahvonen@…
Message:

avoids extra srollbar in browsers that handle overflow correctly (webkit, featurebrowser, table)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/com/itmill/toolkit/terminal/gwt/client/ui/ITabsheetPanel.java

    r5163 r5273  
    110110    } 
    111111 
     112    /* 
     113     * Gets only called with 100% or "" 
     114     */ 
    112115    public void setHeight(String height) { 
    113116        super.setHeight(height); 
     
    134137        DOM.setStyleAttribute(e, "visibility", "hidden"); 
    135138        DOM.setStyleAttribute(e, "position", "absolute"); 
     139        DOM.setStyleAttribute(e, "top", "0px"); 
    136140    } 
    137141 
     
    139143        DOM.setStyleAttribute(e, "visibility", ""); 
    140144        DOM.setStyleAttribute(e, "position", ""); 
     145        DOM.setStyleAttribute(e, "top", ""); 
    141146    } 
    142147}