diff --git a/packages/@tailwindcss-postcss/src/__snapshots__/index.test.ts.snap b/packages/@tailwindcss-postcss/src/__snapshots__/index.test.ts.snap index 26c587804..ee626aeea 100644 --- a/packages/@tailwindcss-postcss/src/__snapshots__/index.test.ts.snap +++ b/packages/@tailwindcss-postcss/src/__snapshots__/index.test.ts.snap @@ -566,10 +566,6 @@ exports[`\`@import 'tailwindcss'\` is replaced with the generated CSS 1`] = ` color: color-mix(in srgb, currentColor 50%, transparent); } - :disabled { - cursor: default; - } - img, svg, video, canvas, audio, iframe, embed, object { vertical-align: middle; display: block; diff --git a/packages/tailwindcss/preflight.css b/packages/tailwindcss/preflight.css index 8138927d8..bf664fc2b 100644 --- a/packages/tailwindcss/preflight.css +++ b/packages/tailwindcss/preflight.css @@ -289,14 +289,6 @@ textarea { color: color-mix(in srgb, currentColor 50%, transparent); /* 2 */ } -/* - Make sure disabled buttons don't get the pointer cursor. -*/ - -:disabled { - cursor: default; -} - /* 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)