Hi guys. I have this ugly line of CSS that I can't seem to properly
translate to Sass. It applies to Google Map info windows that are
displayed in IE. Here's what the CSS should look like:
* html #map_info_window_beak {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader
(src='images/corners/red_beak.png', sizingMethod='crop');
}
I've tried the following:
:filter:progid:DXImageTransform.Microsoft.AlphaImageLoader src='images/
corners/red_beak.png', sizingMethod='crop'
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader: src='images/
corners/red_beak.png', sizingMethod='crop'
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader: src='images/
corners/red_beak.png'
but none of those actually result in CSS being generated.
This one generated an "Invalid attribute" error:
:filter:progid:DXImageTransform.Microsoft.AlphaImageLoader src='images/
corners/red_beak.png'
Any suggestions for how to translate that original CSS code into Sass?
Thanks!
Nick
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Haml" 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/haml?hl=en
-~----------~----~----~----~------~----~------~--~---