Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1.  
  2. @mixin not($notArray...) {
  3. @if (length($notArray) == 1){
  4. $notArray: nth($notArray,1);
  5. }
  6. $notOutput: '';
  7. @each $not in $notArray {
  8. $notOutput: $notOutput + ':not(#{$not})';
  9. }
  10. &#{$notOutput} {
  11. @content;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement