test: more

This commit is contained in:
alexander.akait 2023-05-04 17:59:39 +03:00
parent a06fea8e8c
commit fb1d14e64a
1 changed files with 45 additions and 1 deletions

View File

@ -343,7 +343,7 @@
}
}
.not-selector {
.not-selector-inside {
color: #fff;
opacity: 0.12;
padding: .5px;
@ -351,6 +351,50 @@
unknown1: .foo, .bar, #bar;
}
.nested-var {
.again {
color: var(--local-color);
}
}
.nested-with-local-pseudo {
color: red;
:local .local-nested {
color: red;
}
:global .global-nested {
color: red;
}
:local(.local-nested) {
color: red;
}
:global(.global-nested) {
color: red;
}
}
.nested-parens {
.local9 div:has(.vertical-tiny, .vertical-small) {
max-height: 0;
margin: 0;
overflow: hidden;
}
}
:global .global-foo {
.nested-global {
color: red;
}
:local .local-in-global {
color: blue;
}
}
:scope {
color: red;
}