03526ff3b9
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
587 B
CSS
25 lines
587 B
CSS
@import 'tailwindcss';
|
|
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
|
|
/* Tailwind v4's Preflight removes cursor:pointer from buttons — restore the expected UX. */
|
|
@layer base {
|
|
button:not(:disabled),
|
|
[role='button']:not(:disabled),
|
|
summary,
|
|
label[for],
|
|
select:not(:disabled),
|
|
input[type='submit']:not(:disabled),
|
|
input[type='reset']:not(:disabled),
|
|
input[type='button']:not(:disabled),
|
|
input[type='checkbox']:not(:disabled),
|
|
input[type='radio']:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:disabled,
|
|
[role='button'][aria-disabled='true'] {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|