Guest User

Untitled

a guest
Feb 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. @mixin opacity($opacity) {
  2. opacity: $opacity;
  3. $opacity-ie: $opacity * 100;
  4. filter: alpha(opacity=$opacity-ie);
  5. }
  6.  
  7. .normal {
  8. @include opacity(1);
  9. }
  10.  
  11. .disabled {
  12. @include opacity(.5);
  13. }
Add Comment
Please, Sign In to add comment