Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-20 Thread Gunlaug Sørtun
Manuel Razzari wrote: > It turns out that some of the imports actually produce HTTP requests > from IE7, like this: GET > /contents/styles/_url(%22chaos-060801-test2.css%22) > > The resulting 404 page is actually parsed by IE7 as CSS... so if you > have some custom 404 page with embedded CSS, i

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-20 Thread Manuel Razzari
I wrote: > I now have this: > /* IE 5.5 and 6 >Georg's underscore hack - gunlaug.no/contents/wd_chaos_20.html */ > @import _url("/Styles/screen_ie_5_55_6.css"); Well... Here's a big issue we've had that may be of interest to your test page Georg... It turns out that some of the imports

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-19 Thread Manuel Razzari
Hi all, and sorry for the delay on getting back to you. To answer a common question: IE conditional comments were not an option due to a ridiculous situation at the client's office... Various computers, including a big screen displaying the website on their front desk, had installed IE7 and then r

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-17 Thread Thierry Koblentz
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > discuss.org] On Behalf Of Bill Moseley > Sent: Sunday, August 17, 2008 8:41 AM > To: Manuel Razzari > Cc: Jonny Stephens; CSS List > Subject: Re: [css-d] Pass full css file to IE6 but not IE7 -

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-17 Thread David Hucklesby
> On Thu, Aug 14, 2008 at 07:09:07PM -0300, Manuel Razzari wrote: > >> Extremely appreciated link, this seems to be EXACTLY what I need. >> On Sun, 17 Aug 2008 08:40:54 -0700, Bill Moseley responded: > > I have not looked into the details, but we have been avoiding @import: > > http://developer.

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-17 Thread Bill Moseley
On Thu, Aug 14, 2008 at 07:09:07PM -0300, Manuel Razzari wrote: > > Extremely appreciated link, this seems to be EXACTLY what I need. I have not looked into the details, but we have been avoiding @import: http://developer.yahoo.com/performance/rules.html in our markup -- and also in our CSS

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-16 Thread Alan Gresley
Gunlaug Sørtun wrote: > Alan Gresley wrote: >> Opera 9.5 seems not to recover from this import until the second ruleset. >> >> @import --url("chaos-060801-test6.css"); >> >> Here's a demo. >> >> http://css-class.com/test/css/imports/import-invalid-opera950.htm > > So I've noticed. Now, what does t

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-15 Thread Gunlaug Sørtun
Alan Gresley wrote: > Opera 9.5 seems not to recover from this import until the second > ruleset. > > @import --url("chaos-060801-test6.css"); > > Here's a demo. > > http://css-class.com/test/css/imports/import-invalid-opera950.htm So I've noticed. Now, what does the CSS specs and/or the lates

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-15 Thread Alan Gresley
Gunlaug Sørtun wrote: [...] > The hack will work if placed correctly. However, I've updated the > test-page... > > > > ...to point out what seems to be a "recovery after invalid @import > rules" strategy-change in Opera 9.50. Would be bad to lose

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Gunlaug Sørtun
Manuel Razzari wrote: >> See: http://www.gunlaug.no/contents/wd_chaos_20.html > > Extremely appreciated link, this seems to be EXACTLY what I need. > > I will test this first thing tomorrow and let you know if it works. > > Thank you, and thanks Georg btw who always seems to have "been there, >

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Jonny Stephens
On 14 Aug 2008, at 22:58, Thierry Koblentz wrote: >> From: [EMAIL PROTECTED] [mailto:css-d- >> [EMAIL PROTECTED] >> discuss.org] On Behalf Of Jonny Stephens >> On 14 Aug 2008, at 18:48, Manuel Razzari wrote: >> >>> So, using conditional comments, I produced a CSS file which >>> targets IE6 only.

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Manuel Razzari
Jonny, On Thu, Aug 14, 2008 at 18:42, Jonny Stephens <[EMAIL PROTECTED]> wrote: > On 14 Aug 2008, at 18:48, Manuel Razzari wrote: >> So the question is: how can I import / link a full CSS file for IE6, >> using only CSS (without using conditional comments, css expressios or >> javascript). > > Ass

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Thierry Koblentz
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > discuss.org] On Behalf Of Jonny Stephens > Sent: Thursday, August 14, 2008 2:42 PM > To: Manuel Razzari > Cc: CSS List > Subject: Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS onl

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Jonny Stephens
On 14 Aug 2008, at 18:48, Manuel Razzari wrote: > So, using conditional comments, I produced a CSS file which > targets IE6 only. > Then, due to an extremely bizarre client situation, it turns out I > can't use conditional comments > > So the question is: how can I import / link a full CSS file

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Manuel Razzari
>> So, using conditional comments, I produced a CSS file which targets IE6 >> only. >> Then, due to an extremely bizarre client situation, it turns out I >> can't use conditional comments >> >> Any ideas? Or must I fall back to prepending * html to all my IE6 rules? Ingo Chao wrote: > Why not? Th

Re: [css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Ingo Chao
Manuel Razzari wrote: > So, using conditional comments, I produced a CSS file which targets IE6 only. > Then, due to an extremely bizarre client situation, it turns out I > can't use conditional comments > > ... > > Any ideas? Or must I fall back to prepending * html to all my IE6 rules? Why no

[css-d] Pass full css file to IE6 but not IE7 - with CSS only

2008-08-14 Thread Manuel Razzari
Hi all! So, using conditional comments, I produced a CSS file which targets IE6 only. Then, due to an extremely bizarre client situation, it turns out I can't use conditional comments So the question is: how can I import / link a full CSS file for IE6, using only CSS (without using conditional c