How do I include IE specific stylesheets...

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

How do I include IE specific stylesheets...

SeanTAllen
when using updateRoot so that I end up with:

<!--[if IE] >
< link rel="stylesheet" href="/css/blueprint/ie.css" type="text/css"
media="screen, projection" / >
< ![endif]-->

I can get everything in the link easily enough its the IE specific bit
that is throwing me.

so far i have:

        (aHtmlRoot stylesheet resourceUrl: 'css/blueprint/ie.css' ) addScreen
addProjection.
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: How do I include IE specific stylesheets...

Ryan Simmons-2
Use if ie do

so.

aHtmlRoot if ie do: [(aHtmlRoot stylesheet resourceUrl: 'css/blueprint/ie.css' ) addScreen 
addProjection]

2009/12/29 Sean Allen <[hidden email]>
when using updateRoot so that I end up with:

<!--[if IE] >
< link rel="stylesheet" href="/css/blueprint/ie.css" type="text/css"
media="screen, projection" / >
< ![endif]-->

I can get everything in the link easily enough its the IE specific bit
that is throwing me.

so far i have:

       (aHtmlRoot stylesheet resourceUrl: 'css/blueprint/ie.css' ) addScreen
addProjection.
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside