diff --git a/__tests__/fixtures/tailwind-output-flagged.css b/__tests__/fixtures/tailwind-output-flagged.css index de4352e04..8616b99ac 100644 --- a/__tests__/fixtures/tailwind-output-flagged.css +++ b/__tests__/fixtures/tailwind-output-flagged.css @@ -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 { diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index 33d2a7362..c8dfb4073 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -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 { diff --git a/__tests__/fixtures/tailwind-output-no-color-opacity.css b/__tests__/fixtures/tailwind-output-no-color-opacity.css index 31a7b1827..ae0fcf3c2 100644 --- a/__tests__/fixtures/tailwind-output-no-color-opacity.css +++ b/__tests__/fixtures/tailwind-output-no-color-opacity.css @@ -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 { diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index d2ff87987..2a4543d3c 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -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 { diff --git a/src/plugins/backgroundClip.js b/src/plugins/backgroundClip.js index 505c30d31..1931199d5 100644 --- a/src/plugins/backgroundClip.js +++ b/src/plugins/backgroundClip.js @@ -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')