Skip to content

Commit b98f72b

Browse files
committed
add changeset
1 parent 8e9a366 commit b98f72b

File tree

3 files changed

+31
-134
lines changed

3 files changed

+31
-134
lines changed

.changeset/odd-adults-hang.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
'@emotion/styled': major
3+
'@emotion/cache': major
4+
'@emotion/react': major
5+
'@emotion/css': major
6+
---
7+
8+
Removed special-casing of pseudo classes and pseudo elements. Previously they were always implicitly nested in the "current context" but that's not how many other popular CSS preprocessor work and conflicts with some newer CSS features like `:where` and `:is`.
9+
10+
You should migrate your code like this:
11+
12+
```diff
13+
css`
14+
- :hover {
15+
+ &:hover {
16+
color: hotpink;
17+
}
18+
`
19+
```

packages/css/test/__snapshots__/selectivity.test.js.snap

+11-133
Original file line numberDiff line numberDiff line change
@@ -15,62 +15,62 @@ exports[`css complex nested media queries 1`] = `
1515
`;
1616

1717
exports[`css complex nested styles 1`] = `
18-
".css-1fh6au3 {
18+
".css-2ksolp {
1919
color: blue;
2020
}
2121
22-
.css-1fh6au3:hover {
22+
.css-2ksolp:hover {
2323
color: green;
2424
}
2525
26-
.css-1fh6au3:hover .name {
26+
.css-2ksolp:hover .name {
2727
color: amethyst;
2828
}
2929
30-
.css-1fh6au3:hover .name:focus {
30+
.css-2ksolp:hover .name:focus {
3131
color: burlywood;
3232
}
3333
3434
@media (min-width: 420px) {
35-
.css-1fh6au3:hover .name:focus {
35+
.css-2ksolp:hover .name:focus {
3636
color: rebeccapurple;
3737
}
3838
}"
3939
`;
4040

4141
exports[`css handles media query merges 1`] = `
42-
".css-uzr6q5 {
42+
".css-1mnte70 {
4343
color: darkslateblue;
4444
color: red;
4545
color: purple;
4646
}
4747
4848
@media (min-width: 420px) {
49-
.css-uzr6q5 {
49+
.css-1mnte70 {
5050
color: amethyst;
5151
}
5252
}
5353
5454
@media (min-width: 640px) {
55-
.css-uzr6q5 {
55+
.css-1mnte70 {
5656
color: rebeccapurple;
5757
}
5858
}
5959
6060
@media (min-width: 960px) {
61-
.css-uzr6q5 {
61+
.css-1mnte70 {
6262
color: burlywood;
6363
}
6464
}
6565
6666
@media (min-width: 640px) {
67-
.css-uzr6q5 {
67+
.css-1mnte70 {
6868
color: blue;
6969
}
7070
}
7171
7272
@media (min-width: 640px) {
73-
.css-uzr6q5 {
73+
.css-1mnte70 {
7474
color: aquamarine;
7575
}
7676
}"
@@ -143,125 +143,3 @@ a.css-miigdc {
143143
background: blue;
144144
}"
145145
`;
146-
147-
exports[`orphaned pseudos in nested atrules 1`] = `
148-
"@media (max-width: 400px) {
149-
@supports (display: grid) {
150-
.css-mlu596 div,
151-
.css-mlu596:first-child {
152-
color: hotpink;
153-
}
154-
}
155-
}"
156-
`;
157-
158-
exports[`orphaned pseudos multiple in a group 1`] = `
159-
".css-ynt3gm:hover div,
160-
.css-ynt3gm:focus {
161-
color: hotpink;
162-
}"
163-
`;
164-
165-
exports[`orphaned pseudos multiple in a group in multiple in a group 1`] = `
166-
".css-b4zt77 .foo:first-child,
167-
.css-b4zt77 .bar div:first-child,
168-
.css-b4zt77 .qwe:first-child,
169-
.css-b4zt77 .foo div,
170-
.css-b4zt77 .bar div div,
171-
.css-b4zt77 .qwe div,
172-
.css-b4zt77 .foo span,
173-
.css-b4zt77 .bar div span,
174-
.css-b4zt77 .qwe span,
175-
.css-b4zt77 .foo:last-child,
176-
.css-b4zt77 .bar div:last-child,
177-
.css-b4zt77 .qwe:last-child {
178-
color: hotpink;
179-
}"
180-
`;
181-
182-
exports[`orphaned pseudos orphaned pseudo nested in orphaned pseudo 1`] = `
183-
".css-1dmq8mx:hover {
184-
color: hotpink;
185-
}
186-
187-
.css-1dmq8mx:hover:focus {
188-
outline-color: blue;
189-
}"
190-
`;
191-
192-
exports[`orphaned pseudos overlapping - reversed 1`] = `
193-
".css-15m4dbh :first-child:first-child .css-15m4dbh :first-child {
194-
color: hotpink;
195-
}"
196-
`;
197-
198-
exports[`orphaned pseudos overlapping 1`] = `
199-
".css-dmhqee :first-child:first-child {
200-
color: hotpink;
201-
}"
202-
`;
203-
204-
exports[`orphaned pseudos regexp special character 1`] = `
205-
".css-1545qp0:nth-child(3) {
206-
color: hotpink;
207-
}"
208-
`;
209-
210-
exports[`orphaned pseudos regular rule nested in orphaned pseudo 1`] = `
211-
".css-1u1a2oo:hover {
212-
color: hotpink;
213-
}
214-
215-
.css-1u1a2oo:hover .foo {
216-
color: grey;
217-
}"
218-
`;
219-
220-
exports[`orphaned pseudos regular rule with nested rule nested in orphaned pseudo 1`] = `
221-
".css-1tlqvwi:hover {
222-
color: hotpink;
223-
}
224-
225-
.css-1tlqvwi:hover .foo {
226-
color: grey;
227-
}
228-
229-
@media print {
230-
.css-1tlqvwi:hover .foo {
231-
display: none;
232-
}
233-
}"
234-
`;
235-
236-
exports[`orphaned pseudos selector list with nested atrule 1`] = `
237-
".css-7vvm69::backdrop,
238-
.css-7vvm69+.backdrop {
239-
background-color: grey;
240-
}
241-
242-
@media print {
243-
.css-7vvm69::backdrop,
244-
.css-7vvm69+.backdrop {
245-
display: none;
246-
}
247-
}"
248-
`;
249-
250-
exports[`orphaned pseudos single 1`] = `
251-
".css-17n559g:focus {
252-
color: hotpink;
253-
}"
254-
`;
255-
256-
exports[`orphaned pseudos with nested atrule 1`] = `
257-
".css-1vs75su::before {
258-
content: "*";
259-
background: pink;
260-
}
261-
262-
@media screen and (max-width: 800px) {
263-
.css-1vs75su::before {
264-
background: cyan;
265-
}
266-
}"
267-
`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`basic 1`] = `"<style data-emotion="css 15xr5n4-html">.css-15xr5n4-html{color:hotpink;}.css-15xr5n4-html:hover{color:green;}/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNvdXJjZS1tYXAtc2VydmVyLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVVNIiwiZmlsZSI6InNvdXJjZS1tYXAtc2VydmVyLmpzIiwic291cmNlc0NvbnRlbnQiOlsiLyoqIEBqc3gganN4XG4gKiBAamVzdC1lbnZpcm9ubWVudCBub2RlXG4gKi9cblxuaW1wb3J0IHsganN4IH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnXG5pbXBvcnQgeyByZW5kZXJUb1N0cmluZyB9IGZyb20gJ3JlYWN0LWRvbS9zZXJ2ZXInXG5cbnRlc3QoJ2Jhc2ljJywgKCkgPT4ge1xuICBsZXQgaHRtbCA9IHJlbmRlclRvU3RyaW5nKFxuICAgIDxkaXZcbiAgICAgIGNzcz17e1xuICAgICAgICBjb2xvcjogJ2hvdHBpbmsnLFxuICAgICAgICAnOmhvdmVyJzoge1xuICAgICAgICAgIGNvbG9yOiAnZ3JlZW4nXG4gICAgICAgIH1cbiAgICAgIH19XG4gICAgPlxuICAgICAgc29tZSBob3RwaW5rIHRleHRcbiAgICA8L2Rpdj5cbiAgKVxuICBleHBlY3QoaHRtbCkudG9NYXRjaFNuYXBzaG90KClcbn0pXG4iXX0= */</style><div class="css-15xr5n4-html">some hotpink text</div>"`;
3+
exports[`basic 1`] = `"<style data-emotion="css xoge1e-html">.css-xoge1e-html{color:hotpink;}.css-xoge1e-html:hover{color:green;}/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNvdXJjZS1tYXAtc2VydmVyLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVVNIiwiZmlsZSI6InNvdXJjZS1tYXAtc2VydmVyLmpzIiwic291cmNlc0NvbnRlbnQiOlsiLyoqIEBqc3gganN4XG4gKiBAamVzdC1lbnZpcm9ubWVudCBub2RlXG4gKi9cblxuaW1wb3J0IHsganN4IH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnXG5pbXBvcnQgeyByZW5kZXJUb1N0cmluZyB9IGZyb20gJ3JlYWN0LWRvbS9zZXJ2ZXInXG5cbnRlc3QoJ2Jhc2ljJywgKCkgPT4ge1xuICBsZXQgaHRtbCA9IHJlbmRlclRvU3RyaW5nKFxuICAgIDxkaXZcbiAgICAgIGNzcz17e1xuICAgICAgICBjb2xvcjogJ2hvdHBpbmsnLFxuICAgICAgICAnJjpob3Zlcic6IHtcbiAgICAgICAgICBjb2xvcjogJ2dyZWVuJ1xuICAgICAgICB9XG4gICAgICB9fVxuICAgID5cbiAgICAgIHNvbWUgaG90cGluayB0ZXh0XG4gICAgPC9kaXY+XG4gIClcbiAgZXhwZWN0KGh0bWwpLnRvTWF0Y2hTbmFwc2hvdCgpXG59KVxuIl19 */</style><div class="css-xoge1e-html">some hotpink text</div>"`;

0 commit comments

Comments
 (0)