BUG 8694 estañen IE sobre el scroll

- Los tabs estaban sobrepuestos debido a que se estaba calculando mal el alto del div q las contenia en IE
- Se agrego una validacion para que cuando sea IE se le agregue n unos cuantos pixeles mas cuando se esta usando IE
This commit is contained in:
Julio Cesar Laura
2012-03-12 11:55:33 -04:00
parent 3fc1318ce2
commit 3b05c18bab

View File

@@ -1473,7 +1473,7 @@ leimnud.Package.Public({
if(this.tab.options)
{
this.parent.dom.setStyle(this.elements.tab,{
height :((this.tab.display==="vertical")?heightContent:this.tab.optHeight+4),
height :((this.tab.display==="vertical")?heightContent:this.tab.optHeight+4+(this.parent.browser.isIE ? 14 : 0)),
//border :"1px solid red",
width :((this.tab.display==="vertical")?this.tab.width:this.options.size.w-8),
top :beginTop,