linenumbers.less 311 B

123456789101112131415161718192021222324252627282930313233
  1. @charset "UTF-8";
  2. @import "import/test.less";
  3. .start() {
  4. .test2 {
  5. color: red;
  6. }
  7. }
  8. .mix() {
  9. color: black;
  10. }
  11. .test1 {
  12. .mix();
  13. }
  14. .start();
  15. .mixin_import1();
  16. .mixin_import2();
  17. @debug: 1;
  18. & when (@debug = 1) {
  19. .test {
  20. color: red;
  21. & when (@debug = 1) {
  22. width: 2;
  23. }
  24. }
  25. }