Mulimage 2.0 #1

Merged
dtoro merged 64 commits from new into main 2026-05-21 22:48:55 +02:00
Showing only changes of commit cb5bc120dc - Show all commits

View File

@@ -84,4 +84,20 @@
background-color: hsl(var(--background));
color: hsl(var(--foreground));
}
/*
* Tailwind v4 dropped the built-in `cursor: pointer` on buttons; restore
* it so every <button>, <summary>, and role="button" gets the click
* affordance. Disabled controls get `not-allowed` so the cursor mirrors
* the visual opacity-50 state already on most buttons.
*/
button:not(:disabled),
[role='button']:not([aria-disabled='true']),
summary {
cursor: pointer;
}
button:disabled,
[role='button'][aria-disabled='true'] {
cursor: not-allowed;
}
}