Don't include vendor prefix for background-clip: text

Better to rely on autoprefixer for this for now. If we want to start shipping prefixes we should do it across the board, not just in one spot.
This commit is contained in:
Adam Wathan 2020-08-15 16:24:21 -04:00
parent 5b82b6f5ac
commit 488c0e35c9
5 changed files with 1 additions and 21 deletions

View File

@ -2921,7 +2921,6 @@ video {
.bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.bg-transparent {
@ -28019,7 +28018,6 @@ video {
.sm\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.sm\:bg-transparent {
@ -53087,7 +53085,6 @@ video {
.md\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.md\:bg-transparent {
@ -78155,7 +78152,6 @@ video {
.lg\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.lg\:bg-transparent {
@ -103223,7 +103219,6 @@ video {
.xl\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.xl\:bg-transparent {

View File

@ -1781,7 +1781,6 @@ video {
.bg-clip-text {
background-clip: text !important;
-webkit-background-clip: text !important;
}
.bg-transparent {
@ -15844,7 +15843,6 @@ video {
.sm\:bg-clip-text {
background-clip: text !important;
-webkit-background-clip: text !important;
}
.sm\:bg-transparent {
@ -29877,7 +29875,6 @@ video {
.md\:bg-clip-text {
background-clip: text !important;
-webkit-background-clip: text !important;
}
.md\:bg-transparent {
@ -43910,7 +43907,6 @@ video {
.lg\:bg-clip-text {
background-clip: text !important;
-webkit-background-clip: text !important;
}
.lg\:bg-transparent {
@ -57943,7 +57939,6 @@ video {
.xl\:bg-clip-text {
background-clip: text !important;
-webkit-background-clip: text !important;
}
.xl\:bg-transparent {

View File

@ -1577,7 +1577,6 @@ video {
.bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.bg-transparent {
@ -13192,7 +13191,6 @@ video {
.sm\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.sm\:bg-transparent {
@ -24777,7 +24775,6 @@ video {
.md\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.md\:bg-transparent {
@ -36362,7 +36359,6 @@ video {
.lg\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.lg\:bg-transparent {
@ -47947,7 +47943,6 @@ video {
.xl\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.xl\:bg-transparent {

View File

@ -1781,7 +1781,6 @@ video {
.bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.bg-transparent {
@ -15844,7 +15843,6 @@ video {
.sm\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.sm\:bg-transparent {
@ -29877,7 +29875,6 @@ video {
.md\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.md\:bg-transparent {
@ -43910,7 +43907,6 @@ video {
.lg\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.lg\:bg-transparent {
@ -57943,7 +57939,6 @@ video {
.xl\:bg-clip-text {
background-clip: text;
-webkit-background-clip: text;
}
.xl\:bg-transparent {

View File

@ -8,7 +8,7 @@ export default function() {
...(target('display') === 'ie11'
? {}
: {
'.bg-clip-text': { 'background-clip': 'text', '-webkit-background-clip': 'text' },
'.bg-clip-text': { 'background-clip': 'text' },
}),
},
variants('backgroundClip')