You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
.test {
background-color:#6374AB;
width:100%;
color:#ffffff;
}
.opaque1 { // for all other browsers
opacity:.5;
}
.opaque2 { // for IE5-7
/* Comment out the following and the file compiles no problem. */filter:alpha(opacity=50);
}
.opaque3 { // for IE8
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
Whoops! Thanks. For anyone stumbling on this issue, the root issue is in libsass: sass/libsass#154, and the "documented fix" mentioned here and in #132 is to use the "unquote" function as a work-around.
I pasted this example from http://www.quirksmode.org/css/opacity.html into a file named test.scss:
I used this test harness:
Result:
.../test.scss:13: error: error reading values after opacity
The text was updated successfully, but these errors were encountered: