webpack/test/configCases/css/css-modules/style.module.css

1135 lines
16 KiB
CSS
Raw Normal View History

2024-11-08 00:32:00 +08:00
@import "at-rule-value.module.css";
2021-12-15 15:34:31 +08:00
.class {
color: red;
}
.local1,
.local2 :global .global,
.local3 {
color: green;
}
:global .global :local .local4 {
color: yellow;
}
.local5:global(.global).local6 {
2021-12-15 15:34:31 +08:00
color: blue;
}
2021-12-15 15:34:31 +08:00
.local7 div:not(.disabled, .mButtonDisabled, .tipOnly) {
pointer-events: initial !important;
}
2023-03-27 16:11:53 +08:00
.local8 :is(div.parent1.child1.vertical-tiny,
div.parent1.child1.vertical-small,
div.otherDiv.horizontal-tiny,
div.otherDiv.horizontal-small div.description) {
max-height: 0;
margin: 0;
overflow: hidden;
}
.local9 :matches(div.parent1.child1.vertical-tiny,
div.parent1.child1.vertical-small,
div.otherDiv.horizontal-tiny,
div.otherDiv.horizontal-small div.description) {
max-height: 0;
margin: 0;
overflow: hidden;
}
.local10 :where(div.parent1.child1.vertical-tiny,
div.parent1.child1.vertical-small,
div.otherDiv.horizontal-tiny,
div.otherDiv.horizontal-small div.description) {
max-height: 0;
margin: 0;
overflow: hidden;
}
.local11 div:has(.disabled, .mButtonDisabled, .tipOnly) {
pointer-events: initial !important;
}
.local12 div:current(p, span) {
background-color: yellow;
}
.local13 div:past(p, span) {
display: none;
}
.local14 div:future(p, span) {
background-color: yellow;
}
.local15 div:-moz-any(ol, ul, menu, dir) {
list-style-type: square;
}
.local16 li:-webkit-any(:first-child, :last-child) {
background-color: aquamarine;
}
2023-05-05 00:18:13 +08:00
.local9 :matches(div.parent1.child1.vertical-tiny,
div.parent1.child1.vertical-small,
div.otherDiv.horizontal-tiny,
div.otherDiv.horizontal-small div.description) {
max-height: 0;
margin: 0;
overflow: hidden;
}
:global(:global(:local(.nested1)).nested2).nested3 {
2021-12-15 15:34:31 +08:00
color: pink;
}
2021-12-15 15:34:31 +08:00
#ident {
color: purple;
}
@keyframes localkeyframes {
0% {
left: var(--pos1x);
top: var(--pos1y);
color: var(--theme-color1);
}
100% {
left: var(--pos2x);
top: var(--pos2y);
color: var(--theme-color2);
}
}
@keyframes localkeyframes2 {
2021-12-15 15:34:31 +08:00
0% {
left: 0;
2021-12-15 15:34:31 +08:00
}
100% {
left: 100px;
2021-12-15 15:34:31 +08:00
}
}
.animation {
animation-name: localkeyframes;
animation: 3s ease-in 1s 2 reverse both paused localkeyframes, localkeyframes2;
--pos1x: 0px;
--pos1y: 0px;
--pos2x: 10px;
--pos2y: 20px;
}
2021-12-15 22:46:13 +08:00
/* .composed {
composes: local1;
composes: local2;
} */
.vars {
2021-12-15 22:46:13 +08:00
color: var(--local-color);
--local-color: red;
}
.globalVars :global {
color: var(--global-color);
--global-color: red;
}
@media (min-width: 1600px) {
.wideScreenClass {
color: var(--local-color);
--local-color: green;
}
}
@media screen and (max-width: 600px) {
.narrowScreenClass {
color: var(--local-color);
--local-color: purple;
}
}
@supports (display: grid) {
.displayGridInSupports {
display: grid;
}
}
@supports not (display: grid) {
.floatRightInNegativeSupports {
float: right;
}
}
@supports (display: flex) {
@media screen and (min-width: 900px) {
.displayFlexInMediaInSupports {
display: flex;
}
}
}
@media screen and (min-width: 900px) {
@supports (display: flex) {
.displayFlexInSupportsInMedia {
display: flex;
}
}
}
2023-04-06 07:09:08 +08:00
@MEDIA screen and (min-width: 900px) {
@SUPPORTS (display: flex) {
.displayFlexInSupportsInMediaUpperCase {
display: flex;
}
}
}
.animationUpperCase {
ANIMATION-NAME: localkeyframesUPPERCASE;
ANIMATION: 3s ease-in 1s 2 reverse both paused localkeyframesUPPERCASE, localkeyframes2UPPPERCASE;
--pos1x: 0px;
--pos1y: 0px;
--pos2x: 10px;
--pos2y: 20px;
}
@KEYFRAMES localkeyframesUPPERCASE {
0% {
left: VAR(--pos1x);
top: VAR(--pos1y);
color: VAR(--theme-color1);
}
100% {
left: VAR(--pos2x);
top: VAR(--pos2y);
color: VAR(--theme-color2);
}
}
@KEYframes localkeyframes2UPPPERCASE {
0% {
left: 0;
}
100% {
left: 100px;
}
}
:GLOBAL .globalUpperCase :LOCAL .localUpperCase {
color: yellow;
}
.VARS {
color: VAR(--LOCAL-COLOR);
--LOCAL-COLOR: red;
}
.globalVarsUpperCase :GLOBAL {
COLOR: VAR(--GLOBAR-COLOR);
--GLOBAR-COLOR: red;
}
2023-04-17 20:14:40 +08:00
@supports (top: env(safe-area-inset-top, 0)) {
.inSupportScope {
color: red;
}
}
.a {
animation: 3s animationName;
-webkit-animation: 3s animationName;
}
.b {
animation: animationName 3s;
-webkit-animation: animationName 3s;
}
.c {
animation-name: animationName;
-webkit-animation-name: animationName;
}
.d {
--animation-name: animationName;
}
@keyframes animationName {
0% {
background: white;
}
100% {
background: red;
}
}
@-webkit-keyframes animationName {
0% {
background: white;
}
100% {
background: red;
}
}
2023-04-13 01:46:19 +08:00
@-moz-keyframes mozAnimationName {
0% {
background: white;
}
100% {
background: red;
}
}
2023-05-04 19:38:10 +08:00
@counter-style thumbs {
system: cyclic;
symbols: "\1F44D";
suffix: " ";
}
@font-feature-values Font One {
@styleset {
nice-style: 12;
}
}
/* At-rule for "nice-style" in Font Two */
@font-feature-values Font Two {
@styleset {
nice-style: 4;
}
}
2023-05-04 19:50:11 +08:00
@property --my-color {
2023-05-04 19:38:10 +08:00
syntax: "<color>";
inherits: false;
initial-value: #c0ffee;
}
2024-10-16 00:04:49 +08:00
@property --my-color-1 {
initial-value: #c0ffee;
syntax: "<color>";
inherits: false;
}
@property --my-color-2 {
syntax: "<color>";
initial-value: #c0ffee;
inherits: false;
}
2023-05-04 19:50:11 +08:00
.class {
color: var(--my-color);
}
2023-05-04 19:38:10 +08:00
@layer utilities {
.padding-sm {
padding: 0.5rem;
}
.padding-lg {
padding: 0.8rem;
}
}
.class {
2023-05-04 20:37:46 +08:00
color: red;
.nested-pure {
2023-05-04 19:38:10 +08:00
color: red;
}
2023-05-04 20:37:46 +08:00
@media screen and (min-width: 200px) {
color: blue;
.nested-media {
color: blue;
}
}
@supports (display: flex) {
display: flex;
.nested-supports {
display: flex;
}
}
@layer foo {
background: red;
.nested-layer {
background: red;
}
}
@container foo {
background: red;
.nested-layer {
background: red;
}
}
2023-05-04 20:37:46 +08:00
}
2023-05-04 22:59:39 +08:00
.not-selector-inside {
2023-05-04 22:43:49 +08:00
color: #fff;
opacity: 0.12;
padding: .5px;
unknown: :local(.test);
2023-05-05 06:24:34 +08:00
unknown1: :local .test;
unknown2: :global .test;
unknown3: :global .test;
unknown4: .foo, .bar, #bar;
}
@unknown :local .local :global .global {
color: red;
}
@unknown :local(.local) :global(.global) {
color: red;
2023-05-04 22:43:49 +08:00
}
2023-05-04 20:37:46 +08:00
2023-05-04 22:59:39 +08:00
.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;
}
2023-05-05 06:24:34 +08:00
:local .local-nested, :global .global-nested-next {
color: red;
}
:local(.local-nested), :global(.global-nested-next) {
color: red;
}
2023-05-05 06:52:08 +08:00
:global .foo, .bar {
color: red;
}
}
#id-foo {
color: red;
#id-bar {
color: red;
}
2023-05-04 22:59:39 +08:00
}
.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;
}
}
2023-05-04 23:21:57 +08:00
@unknown .class {
color: red;
2023-05-05 00:18:13 +08:00
.class {
color: red;
}
}
:global .class :local .in-local-global-scope,
:global .class :local .in-local-global-scope,
:local .class-local-scope :global .in-local-global-scope {
color: red;
2023-05-04 23:21:57 +08:00
}
@container (width > 400px) {
.class-in-container {
font-size: 1.5em;
}
}
@container summary (min-width: 400px) {
@container (width > 400px) {
.deep-class-in-container {
font-size: 1.5em;
}
}
}
2023-05-04 20:37:46 +08:00
:scope {
color: red;
2023-05-04 19:38:10 +08:00
}
2023-05-05 03:40:00 +08:00
.placeholder-gray-700:-ms-input-placeholder {
--placeholder-opacity: 1;
color: #4a5568;
color: rgba(74, 85, 104, var(--placeholder-opacity));
}
.placeholder-gray-700::-ms-input-placeholder {
--placeholder-opacity: 1;
color: #4a5568;
color: rgba(74, 85, 104, var(--placeholder-opacity));
}
.placeholder-gray-700::placeholder {
--placeholder-opacity: 1;
color: #4a5568;
color: rgba(74, 85, 104, var(--placeholder-opacity));
}
2023-05-05 04:01:16 +08:00
:root {
--test: dark;
}
@media screen and (prefers-color-scheme: var(--test)) {
.baz {
2023-05-05 04:01:16 +08:00
color: white;
}
}
2023-05-05 04:35:46 +08:00
2023-05-05 04:59:30 +08:00
@keyframes slidein {
from {
margin-left: 100%;
width: 300%;
}
to {
margin-left: 0%;
width: 100%;
}
}
2023-05-05 04:41:12 +08:00
.class {
animation:
foo var(--animation-name) 3s,
var(--animation-name) 3s,
3s linear 1s infinite running slidein,
3s linear env(foo, var(--baz)) infinite running slidein;
}
2023-05-05 04:35:46 +08:00
:root {
--baz: 10px;
}
.class {
bar: env(foo, var(--baz));
}
2023-05-05 07:05:37 +08:00
:global .global-foo, :local .bar {
:local .local-in-global {
color: blue;
}
@media screen {
:global .my-global-class-again,
:local .my-global-class-again {
color: red;
}
}
}
2023-05-05 08:44:20 +08:00
.first-nested {
.first-nested-nested {
color: red;
}
}
.first-nested-at-rule {
@media screen {
.first-nested-nested-at-rule-deep {
color: red;
}
}
}
2023-05-05 09:57:53 +08:00
:global .again-global {
color:red;
}
:global .again-again-global {
:global .again-again-global {
color: red;
}
}
:root {
--foo: red;
}
:global .again-again-global {
color: var(--foo);
:global .again-again-global {
color: var(--foo);
}
}
:global .again-again-global {
animation: slidein 3s;
2023-05-05 10:07:21 +08:00
:global .again-again-global, .class, :global(:global(:local(.nested1)).nested2).nested3 {
2023-05-05 09:57:53 +08:00
animation: slidein 3s;
}
2023-05-05 10:13:13 +08:00
.local2 :global .global,
.local3 {
color: red;
}
2023-05-05 09:57:53 +08:00
}
@unknown var(--foo) {
color: red;
}
2023-05-05 10:28:27 +08:00
.class {
.class {
.class {
.class {}
}
}
}
.class {
.class {
.class {
.class {
animation: slidein 3s;
}
}
}
}
.class {
animation: slidein 3s;
.class {
animation: slidein 3s;
.class {
animation: slidein 3s;
.class {
animation: slidein 3s;
}
}
}
}
2024-10-09 17:17:44 +08:00
.broken {
. global(.class) {
color: red;
}
: global(.class) {
color: red;
}
: global .class {
color: red;
}
2024-10-09 18:20:41 +08:00
: local(.class) {
color: red;
}
: local .class {
color: red;
}
2024-10-09 17:17:44 +08:00
# hash {
color: red;
}
}
2024-10-09 18:20:41 +08:00
.comments {
:/** test */global(.class) {
color: red;
}
:/** test */global .class {
color: red;
}
:/** test */local(.class) {
color: red;
}
:/** test */local .class {
color: red;
}
./** test **/class {
color: red;
}
:local(./** test **/class) {
color: red;
}
:local ./** test **/class {
color: red;
}
}
2024-10-16 00:04:49 +08:00
.foo {
color: red;
+ .bar + & { color: blue; }
}
.error, #err-404 {
&:hover > .baz { color: red; }
}
.foo {
& :is(.bar, &.baz) { color: red; }
}
.qqq {
color: green;
& .a { color: blue; }
color: red;
}
.parent {
color: blue;
@scope (& > .scope) to (& > .limit) {
& .content {
color: red;
}
}
}
.parent {
color: blue;
@scope (& > .scope) to (& > .limit) {
.content {
color: red;
}
}
.a {
color: red;
}
}
@scope (.card) {
:scope { border-block-end: 1px solid white; }
}
.card {
inline-size: 40ch;
aspect-ratio: 3/4;
@scope (&) {
:scope {
border: 1px solid white;
}
}
}
.foo {
display: grid;
@media (orientation: landscape) {
.bar {
grid-auto-flow: column;
@media (min-width > 1024px) {
.baz-1 {
display: grid;
}
max-inline-size: 1024px;
.baz-2 {
display: grid;
}
}
}
}
}
@counter-style thumbs {
system: cyclic;
symbols: "\1F44D";
suffix: " ";
}
ul {
list-style: thumbs;
}
@container (width > 400px) and style(--responsive: true) {
.class {
font-size: 1.5em;
}
}
/* At-rule for "nice-style" in Font One */
@font-feature-values Font One {
@styleset {
nice-style: 12;
}
}
@font-palette-values --identifier {
font-family: Bixa;
}
.my-class {
font-palette: --identifier;
}
@keyframes foo { /* ... */ }
@keyframes "foo" { /* ... */ }
2024-10-16 03:32:17 +08:00
@keyframes { /* ... */ }
@keyframes{ /* ... */ }
2024-10-16 00:04:49 +08:00
@supports (display: flex) {
@media screen and (min-width: 900px) {
article {
display: flex;
}
}
}
@starting-style {
.class {
opacity: 0;
transform: scaleX(0);
}
}
.class {
opacity: 1;
transform: scaleX(1);
@starting-style {
opacity: 0;
transform: scaleX(0);
}
}
@scope (.feature) {
.class { opacity: 0; }
:scope .class-1 { opacity: 0; }
& .class { opacity: 0; }
}
@position-try --custom-left {
position-area: left;
width: 100px;
margin: 0 10px 0 0;
}
@position-try --custom-bottom {
top: anchor(bottom);
justify-self: anchor-center;
margin: 10px 0 0 0;
position-area: none;
}
@position-try --custom-right {
left: calc(anchor(right) + 10px);
align-self: anchor-center;
width: 100px;
position-area: none;
}
@position-try --custom-bottom-right {
position-area: bottom right;
margin: 10px 0 0 10px;
}
.infobox {
position: fixed;
position-anchor: --myAnchor;
position-area: top;
width: 200px;
margin: 0 0 10px 0;
position-try-fallbacks:
--custom-left, --custom-bottom,
--custom-right, --custom-bottom-right;
}
@page {
size: 8.5in 9in;
margin-top: 4in;
}
@color-profile --swop5c {
src: url("https://example.org/SWOP2006_Coated5v2.icc");
}
.header {
background-color: color(--swop5c 0% 70% 20% 0%);
}
.test {
test: (1, 2) [3, 4], { 1: 2};
.a {
width: 200px;
}
}
.test {
.test {
width: 200px;
}
}
.test {
width: 200px;
.test {
width: 200px;
}
}
.test {
width: 200px;
.test {
.test {
width: 200px;
}
}
}
.test {
width: 200px;
.test {
width: 200px;
.test {
width: 200px;
}
}
}
.test {
.test {
width: 200px;
.test {
width: 200px;
}
}
}
.test {
.test {
width: 200px;
}
width: 200px;
}
.test {
.test {
width: 200px;
}
.test {
width: 200px;
}
}
.test {
.test {
width: 200px;
}
width: 200px;
.test {
width: 200px;
}
}
#test {
c: 1;
#test {
c: 2;
}
}
@property --item-size {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
.container {
display: flex;
height: 200px;
border: 1px dashed black;
/* set custom property values on parent */
--item-size: 20%;
--item-color: orange;
}
.item {
width: var(--item-size);
height: var(--item-size);
background-color: var(--item-color);
}
.two {
--item-size: initial;
--item-color: inherit;
}
.three {
/* invalid values */
--item-size: 1000px;
--item-color: xyz;
}
2024-10-16 03:32:17 +08:00
@property invalid {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property{
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@keyframes "initial" { /* ... */ }
@keyframes/**test**/"initial" { /* ... */ }
@keyframes/**test**/"initial"/**test**/{ /* ... */ }
@keyframes/**test**//**test**/"initial"/**test**//**test**/{ /* ... */ }
@keyframes /**test**/ /**test**/ "initial" /**test**/ /**test**/ { /* ... */ }
@keyframes "None" { /* ... */ }
2024-10-16 11:04:30 +08:00
@property/**test**/--item-size {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property/**test**/--item-size/**test**/{
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property /**test**/--item-size/**test**/ {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property /**test**/ --item-size /**test**/ {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property/**test**/ --item-size /**test**/{
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
@property /**test**/ --item-size /**test**/ {
syntax: "<percentage>";
inherits: true;
initial-value: 40%;
}
2024-10-16 03:32:17 +08:00
div {
2024-10-16 11:04:30 +08:00
animation: 3s ease-in 1s 2 reverse both paused "initial", localkeyframes2;
2024-10-16 03:32:17 +08:00
animation-name: "initial";
animation-duration: 2s;
}
.item-1 {
width: var( --item-size );
height: var(/**comment**/--item-size);
background-color: var( /**comment**/--item-color);
background-color-1: var(/**comment**/ --item-color);
background-color-2: var( /**comment**/ --item-color);
background-color-3: var( /**comment**/ --item-color /**comment**/ );
background-color-3: var( /**comment**/--item-color/**comment**/ );
background-color-3: var(/**comment**/--item-color/**comment**/);
}
@keyframes/**test**/foo { /* ... */ }
@keyframes /**test**/foo { /* ... */ }
@keyframes/**test**/ foo { /* ... */ }
@keyframes /**test**/ foo { /* ... */ }
@keyframes /**test**//**test**/ foo { /* ... */ }
@keyframes /**test**/ /**test**/ foo { /* ... */ }
@keyframes /**test**/ /**test**/foo { /* ... */ }
@keyframes /**test**//**test**/foo { /* ... */ }
@keyframes/**test**//**test**/foo { /* ... */ }
@keyframes/**test**//**test**/foo/**test**//**test**/{ /* ... */ }
@keyframes /**test**/ /**test**/ foo /**test**/ /**test**/ { /* ... */ }
./**test**//**test**/class {
background: red;
}
./**test**/ /**test**/class {
background: red;
}
2024-11-02 01:40:26 +08:00
.var {
--main-color: black;
--FOO: 10px;
--foo: 10px;
--bar: calc(var(--foo) + 10px);
--accent-background: linear-gradient(to top, var(--main-color), white);
--external-link: "test";
--custom-prop: yellow;
--default-value: red;
--main-bg-color: red;
--backup-bg-color: black;
-foo: calc(var(--bar) + 10px);
var: var(--main-color);
var1: var(--foo);
var2: var(--FOO);
content: " (" var(--external-link) ")";
var3: var(--main-color, blue);
var4: var(--custom-prop,);
var5: var(--custom-prop, initial);
var6: var(--custom-prop, var(--default-value));
var7: var(--custom-prop, var(--default-value, red));
var8: var(--unknown);
background-color: var(--main-bg-color, var(--backup-bg-color, white));
}
.var-order {
background-color: var(--test);
--test: red;
}