fix(ui): swap Tailwind-v4-removed ring-opacity-5 for ring-black/5 #465
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/MAPPS-400-ring-opacity-tailwind-v4"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Swap the four
ring-1 ring-black ring-opacity-5sites to the Tailwind-v4 alpha-modifier formring-1 ring-black/5.Why
Tailwind v4 removed the
ring-opacity-*utilities. Withring-opacity-5a no-op,ring-blackpainted a solid black ring instead of the intended 5% hairline on: everyDataTablewrapper (table.rs), the user menu, the notification panel, and the portal user menu (layout.rs). The repo already documented the identicalbg-opacity-*removal atsrc/components/modal.rs:101.Found by the 2026-08-04 UI audit (MAPPS-399), finding F3; confirmed against current
main.Verify
grep -rn ring-opacity- srcreturns nothing.Closes MAPPS-400.