Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

View File

@ -0,0 +1,25 @@
// https://github.com/less/less.js/issues/2798
.test-2798 when ((8+4) < 13) {
regression: fixed;
}
.test-2798 when ((8+6) < 13) {
regression: should not be visible;
}
.conditions-parser-1 when (8+4 < 13) {
only-atomic: ok;
}
.conditions-parser-1 when (8+6 < 13) {
only-atomic: should not be visible;
}
.conditions-parser-2 when (8+(5-1) < 13) {
only-atomic-with-nested-parenthesis: ok;
}
.conditions-parser-2 when (8+(15-1) < 13) {
only-atomic-with-nested-parenthesis: should not be visible;
}
.conditions-parser-3 when (8 < (13+1)) {
only-atomic-nested-parenthesis-on-right: ok;
}
.conditions-parser-3 when (8 < (3+1)) {
only-atomic-nested-parenthesis-on-right: should not be visible;
}

View File

@ -0,0 +1,13 @@
.named-colors-in-expressions {
color-0: 0 -red;
color-1: 1 - red;
color-2: red * 2;
color-3: 2 * red;
@3: -red;
&-bar@{3} {x: y}
@color: red;
&-bar@{color} {a: a};
background-color: blue-2;
color: green-black;
animation: blue-change 5s infinite;
}