namespacing-6.less 309 B

1234567891011121314151617181920212223242526
  1. .wrapper(@another-mixin) {
  2. @another-mixin();
  3. }
  4. .something(foo) {
  5. width: 10px;
  6. }
  7. .output-height() {
  8. height: 10px;
  9. }
  10. .rule-1 {
  11. @alias: .something(foo);
  12. @alias();
  13. }
  14. .rule-2 {
  15. @alias: .something(foo);
  16. .wrapper(@alias);
  17. }
  18. .rule-3 {
  19. .wrapper(.something(foo));
  20. .wrapper(.output-height());
  21. }