fix: Adjust CSS for User Table#38
Conversation
There was a problem hiding this comment.
Pull request overview
Adds new CSS rules intended to restyle the “Users” table, aiming to provide improved spacing, zebra striping, and hover/link styling.
Changes:
- Introduced a new
.table-userCSS block (layout, padding, borders, zebra striping, hover state). - Added link styling scoped to
.table-user td a.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| /* User Table Styles */ | ||
|
|
||
| .table-user { | ||
| width: 100%; | ||
| border-collapse: collapse; | ||
| margin-bottom: 20px; | ||
| } | ||
|
|
There was a problem hiding this comment.
The new .table-user ruleset appears to be unused in the current codebase (no tables render with class="table-user"), so this CSS likely won’t affect the existing Users table(s). For example, adminpanel_users.php renders the users list with <form id="list"> <table> ... and relies on the existing form#list ... styles. To make this PR actually adjust the Users table UI, either (a) update the relevant markup to add class="table-user" to the intended table(s), or (b) change the selectors here to match the existing structure (e.g., target the specific users-list table via its existing IDs/classes).
Automated fix by CoderOps.
Swarm: swarm50
Task: Adjust CSS for User Table