Skip to content

Commit 773a9c9

Browse files
committed
fix
1 parent f0ba50a commit 773a9c9

5 files changed

Lines changed: 12 additions & 8 deletions

File tree

plugin-packs/postcss-preset-env/test/basic.preserve.false.expect.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
207207
-moz-border-image: none;
208208
-o-border-image: none;
209209
border-image: none;
210-
border-radius: 0;
210+
-moz-border-radius: 0;
211+
border-radius: 0;
211212
border-spacing: 0;
212213
bottom: auto;
213214
-webkit-box-shadow: none;

plugin-packs/postcss-preset-env/test/basic.preserve.true.expect.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,8 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
278278
-moz-border-image: none;
279279
-o-border-image: none;
280280
border-image: none;
281-
border-radius: 0;
281+
-moz-border-radius: 0;
282+
border-radius: 0;
282283
border-spacing: 0;
283284
bottom: auto;
284285
-webkit-box-shadow: none;

plugin-packs/postcss-preset-env/test/basic.vendors-3.expect.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -712,13 +712,13 @@
712712
}
713713

714714
.sign {
715-
order: 1;
716-
z-index: -1;
715+
order: sign(10px);
716+
z-index: sign(-10px);
717717
}
718718

719719
.abs {
720-
order: 10px;
721-
z-index: 10px;
720+
order: abs(10px);
721+
z-index: abs(-10px);
722722
}
723723

724724
.random {

plugin-packs/postcss-preset-env/test/layers-basic.expect.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,8 @@ h1.test-custom-selectors:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#):n
218218
-moz-border-image: none;
219219
-o-border-image: none;
220220
border-image: none;
221-
border-radius: 0;
221+
-moz-border-radius: 0;
222+
border-radius: 0;
222223
border-spacing: 0;
223224
bottom: auto;
224225
-webkit-box-shadow: none;

plugin-packs/postcss-preset-env/test/layers-basic.preserve.true.expect.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,8 @@ h1.test-custom-selectors:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#):not(#\#):n
281281
-moz-border-image: none;
282282
-o-border-image: none;
283283
border-image: none;
284-
border-radius: 0;
284+
-moz-border-radius: 0;
285+
border-radius: 0;
285286
border-spacing: 0;
286287
bottom: auto;
287288
-webkit-box-shadow: none;

0 commit comments

Comments
 (0)