mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
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:
parent
5b82b6f5ac
commit
488c0e35c9
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user