[Cosmo-dev] Re: [commits-cosmo] (travis) [5440] Fix for bug 10485:
For some reason
ie6 really doesn't like absolute positioning in this case.
Matthew Eernisse
mde at osafoundation.org
Fri Aug 17 11:32:15 PDT 2007
Travis,
I'm guessing the relative positioning acts as a bandaid for the "height:
100%" problem in IE6, which seems to be cropping up here in the
resizeable area yet again.
That DOM node is actually pixel-positioned by script in the layout code,
so setting position to relative might not be the ideal approach, but if
it doesn't actually break anything else I think it should be fine for now.
Thanks.
Matthew
svncheckin at osafoundation.org wrote:
> Revision
> 5440 <http://cvs.osafoundation.org/viewcvs.cgi?rev=5440&view=rev>
> Author
> travis
> Date
> 2007-08-16 17:07:56 -0700 (Thu, 16 Aug 2007)
>
>
> Log Message
>
> Fix for bug 10485
> <http://bugzilla.osafoundation.org/show_bug.cgi?id=10485>: For some
> reason ie6 really doesn't like absolute positioning in this case.
> Changing this to relative positioning seems to fix it, with the added
> bonus that it doesn't appear to break anything else. MDE: Could you just
> confirm this won't break something in a sneaky way?
>
>
> Modified Paths
>
> * cosmo/trunk/cosmo/src/main/webapp/templates/default/pim.css
> <#cosmotrunkcosmosrcmainwebapptemplatesdefaultpimcss>
>
>
> Diff
>
>
> Modified:
> cosmo/trunk/cosmo/src/main/webapp/templates/default/pim.css
> (5439 => 5440)
>
> --- cosmo/trunk/cosmo/src/main/webapp/templates/default/pim.css 2007-08-16 23:25:10 UTC (rev 5439)
> +++ cosmo/trunk/cosmo/src/main/webapp/templates/default/pim.css 2007-08-17 00:07:56 UTC (rev 5440)
> @@ -321,7 +321,7 @@
> }
> /* Contains the cols for the all-day events */
> #allDayContentDiv {
> - position: absolute;
> + position: relative;
> overflow: hidden;
> -moz-user-select: none
> }
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Commits-Cosmo mailing list
> Commits-Cosmo at osafoundation.org
> http://lists.osafoundation.org/cgi-bin/mailman/listinfo/commits-cosmo
More information about the cosmo-dev
mailing list