On Fri, Jan 16, 2009 at 03:34, Christian Montoya <[email protected]> wrote:
>
> On Thu, Jan 15, 2009 at 7:49 PM, groditi <[email protected]> wrote:
>>
>> For some reason, whenever I use a fieldset with blueprint, the legend
>> is cut-off or unreadable with IE. I have tried all sorts of
>> modifications to the css but can't find a way to fix it. Anyone else
>> ran into anything similar?
>
> Someone posted a fix for this, either here in the mailing list or on
> the bug tracker. I can't remember if the fix was pushed into the main
> source code... can anyone help me out here? I won't be able to do any
> more sleuthing until Saturday.
>
Legend in IE get applied margin-top:-18px in ie.css. If we remove top
margin legends become visible again (not sure if this change has wider
repercussions but i doubt it).
* html legend {margin:-18px -8px 16px 0;padding:0;}
should be
* html legend {margin:0px -8px 16px 0;padding:0;}
I pushed this to my github so you can pull it if you want, but it
should be tested.
http://github.com/rdavl/blueprint-css/tree/master
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Blueprint CSS" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/blueprintcss?hl=en
-~----------~----~----~----~------~----~------~--~---