From: <fg...@us...> - 2010-02-07 15:48:29
|
Revision: 1850 http://openutils.svn.sourceforge.net/openutils/?rev=1850&view=rev Author: fgiust Date: 2010-02-07 15:48:22 +0000 (Sun, 07 Feb 2010) Log Message: ----------- MEDIA-81 some more IE6 layout fixes Modified Paths: -------------- trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/branding.css trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaBrowserPage.html Modified: trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/branding.css =================================================================== --- trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/branding.css 2010-02-07 15:18:33 UTC (rev 1849) +++ trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/branding.css 2010-02-07 15:48:22 UTC (rev 1850) @@ -16,4 +16,8 @@ .mediaBranding a { color: #333; +} + +.mgnlListHeaderBackground { + border: 10px solid red; } \ No newline at end of file Modified: trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaBrowserPage.html =================================================================== --- trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaBrowserPage.html 2010-02-07 15:18:33 UTC (rev 1849) +++ trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaBrowserPage.html 2010-02-07 15:48:22 UTC (rev 1850) @@ -85,7 +85,7 @@ }, { region:'south', - html:'<div class="mediaBranding"><a href="http://www.openmindonline.it" target="_blank"><img src="${this.request.contextPath}/.resources/media/assets/branding/openmind-logo.png" class="logo" alt="openmind" /></a>${this.getMessage('media.footer.text', this.moduleVersion)}</div>', + html:'<div class="mediaBranding"><a href="http://www.openmindonline.it" target="_blank"><img src="${this.request.contextPath}/.resources/media/assets/branding/openmind-logo.png" class="logo" alt="openmind" /></a><span class="brandinginfo">${this.getMessage('media.footer.text', this.moduleVersion)}</span></div>', height: 24 } ] @@ -121,7 +121,9 @@ }); // FF 3.6 patch - setTimeout(function() { frames['mediaTreeView'].location.href = getTreeUrl(); }, 100); + setTimeout(function() { + frames['mediaTreeView'].location.href = getTreeUrl(); + }, 100); if (openPath != null && openPath != "null" && openPath.length > 0) { @@ -273,7 +275,7 @@ </head> <body> <iframe id="mediaTreeView" name="mediaTreeView" class="x-panel-body" src="" - style="width:100%;height:100%;border: none;margin:0;padding:0" frameborder="0"></iframe> + style="width:100%;height:100%;border: none;margin:0;padding:0px;" frameborder="0"></iframe> <iframe id="mediaFolderView" name="mediaFolderView" class="x-panel-body" src="" style="width:100%;height:100%;border:none; overflow:auto" frameborder="0"></iframe> <div id="formDiv" style="display:none"> @@ -296,6 +298,7 @@ try { if (!(document.location.host.indexOf('localhost') > -1) && !(document.location.host.indexOf('127.0.0.1') > -1) ) { var pageTracker = _gat._getTracker("UA-10294410-2"); +pageTracker._setReferrerOverride(document.location); pageTracker._trackPageview('/products/media'); } } catch(err) {} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |