Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. %some-extended-class {
  2. color:red;
  3. }
  4. .no-csstransforms %some-extended-class {
  5. color:blue;
  6. }
  7.  
  8. .class-one {
  9. .class-two {
  10. .class-three {
  11. @extend %some-extended-class;
  12. }
  13. }
  14. }
  15.  
  16. .class-one .class-two .class-three {
  17. color: red;
  18. }
  19.  
  20. .no-csstransforms .class-one .class-two .class-three {
  21. color: blue;
  22. }
  23.  
  24. .class-one .class-two .class-three {
  25. color: red;
  26. }
  27.  
  28. .no-csstransforms .class-one .class-two .class-three, .class-one .class-two .no-csstransforms .class-three {
  29. color: blue;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement