Hi Philipp, while you are at this, please take a look at MAGNOLIA-2221 One of the reason for which our layout is so inconsistent is also due to the bad html/js: the js here is applying css styles that are not valid, since they don't have units (should be 'this.divMain.style.height=(sizeObj.h - 50) + "px"' and so on... ). This only work in legacy mode, when there is no valid doctype and the browser tries to accept everything... instead of removing the valid doctypes ( ;) ) is better to fix the javacript/css in order to make it valid and working as it should, this will really improve compatibility between browsers (PS: also ie8 is coming, and without a valid code it will be difficult to support it)
fabrizio On Wed, Jul 9, 2008 at 11:17 AM, <[EMAIL PROTECTED]> wrote: > Revision 16662 Author pbracher Date 2008-07-09 11:17:55 +0200 (Wed, 09 Jul > 2008) > > Log Message give some extra space for IE > magnolia/trunk/magnolia-module-admininterface/src/main/resources/mgnl-resources/admin-js/tree.js > 2008-07-09 > 09:17:55 UTC (rev 16662) > @@ -279,7 +279,7 @@ > > this.divMain.style.width=sizeObj.w-this.paddingLeft-this.paddingRight-2; > > if(this.browseMode) > - this.divMain.style.height=sizeObj.h - 50; > + this.divMain.style.height=sizeObj.h - 60; > else > this.divMain.style.height=sizeObj.h - 68; > > ---------------------------------------------------------------- for list details see http://documentation.magnolia.info/ ----------------------------------------------------------------
