diff options
Diffstat (limited to '')
-rw-r--r-- | stylesheets/library/_opacity.sass | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/stylesheets/library/_opacity.sass b/stylesheets/library/_opacity.sass deleted file mode 100644 index f8d2a056..00000000 --- a/stylesheets/library/_opacity.sass +++ /dev/null @@ -1,18 +0,0 @@ -//** - Provides cross-browser css opacity. - @param !opacity - A number between 0 and 1, where 0 is transparent and 1 is opaque. -=opacity(!opacity) - :opacity= !opacity - :-moz-opacity= !opacity - :-khtml-opacity= !opacity - :-ms-filter= "progid:DXImageTransform.Microsoft.Alpha(Opacity=" + round(!opacity*100) + ")" - :filter= "alpha(opacity=" + round(!opacity*100) + ")" - -// Make an element completely transparent. -=transparent - +opacity(0) - -// Make an element completely opaque. -=opaque - +opacity(1) |