Skip to content
This repository has been archived by the owner on Jun 2, 2018. It is now read-only.

Commit

Permalink
removed problematic brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
collingo committed Apr 2, 2012
1 parent bc28362 commit 7eb394c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions elements.less
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 7eb394c

Please sign in to comment.