1
0
Fork 0
mirror of https://github.com/Oreolek/elements.git synced 2024-06-29 04:54:58 +03:00

removed problematic brackets

This commit is contained in:
collingo 2012-04-02 17:35:32 +01:00
parent bc283625b3
commit 7eb394c721

View file

@ -74,9 +74,9 @@
.opacity(@opacity: 0.5) {
@percent: @opacity * 100;
/* IE 8 */
-ms-filter: ~"progid:DXImageTransform.Microsoft.Alpha(opacity=(@{percent}))";
/* IE 5-7 */
filter: ~"alpha(opacity = (@{percent}))";
-ms-filter: ~"progid:DXImageTransform.Microsoft.Alpha(opacity=@{percent})";
/* IE 5-7 */
filter: ~"alpha(opacity=@{percent})";
/* Netscape */
-moz-opacity: @opacity;
/* Safari 1.x */