fix(web): table header color and selected row styling #69
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
Ref:
docs/STYLE.md§ Components / TablesTable header text color — spec says
--ctp-overlay1, code uses--ctp-subtext1:web/src/components/items/ItemTable.tsx(thStyle)web/src/components/items/BOMTab.tsx(thStyle, line ~270)web/src/pages/ProjectsPage.tsx(thStyle, line ~329)web/src/pages/SchemasPage.tsx(thStyle, line ~527)web/src/components/audit/AuditTable.tsx(thStyle)Selected row background — spec says
rgba(203, 166, 247, 0.08)(mauve at 8%), code usesvar(--ctp-surface1):web/src/components/items/ItemTable.tsx(selectedPN row)web/src/components/audit/AuditTable.tsx(selected row)Fix: Change all
thStylecolor tovar(--ctp-overlay1)and selected row background torgba(203, 166, 247, 0.08).