forked from enviPath/enviPy
Current Dev State
This commit is contained in:
25
static/js/ketcher2/node_modules/less/test/less-bom/no-strict-math/mixins-guards.less
generated
vendored
Normal file
25
static/js/ketcher2/node_modules/less/test/less-bom/no-strict-math/mixins-guards.less
generated
vendored
Normal 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;
|
||||
}
|
||||
13
static/js/ketcher2/node_modules/less/test/less-bom/no-strict-math/no-sm-operations.less
generated
vendored
Normal file
13
static/js/ketcher2/node_modules/less/test/less-bom/no-strict-math/no-sm-operations.less
generated
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user