test.less 357 B

12345678910111213141516171819202122232425
  1. @charset "ISO-8859-1";
  2. .mixin_import1() {
  3. @media all {
  4. .tst {
  5. color: black;
  6. @media screen {
  7. color: red;
  8. .tst3 {
  9. color: white;
  10. }
  11. }
  12. }
  13. }
  14. }
  15. .mixin_import2() {
  16. .tst2 {
  17. color: white;
  18. }
  19. }
  20. .tst3 {
  21. color: grey;
  22. }