fix: address code review findings for claim mapping rules editor

- Bump all font sizes from 11px/10px to 12px (project minimum)
- Fix handleMove race condition: use mutateAsync + Promise.all
- Clear stale test results after rule create/edit/delete/reorder
- Replace inline styles with CSS module classes in OidcConfigPage
- Remove dead .editRow CSS class
- Replace inline chevron with Lucide icon

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-14 16:58:06 +02:00
parent 3985bb8a43
commit a3ec0aaef3
4 changed files with 51 additions and 32 deletions

View File

@@ -44,3 +44,26 @@
.roleInput {
width: 200px;
}
.advancedRulesRow {
margin-top: 18px;
padding-top: 14px;
border-top: 1px solid var(--border);
}
.advancedRulesInner {
display: flex;
justify-content: space-between;
align-items: center;
}
.advancedRulesLabel {
font-size: 13px;
color: var(--text-secondary, var(--text-muted));
}
.advancedRulesCount {
font-size: 12px;
color: var(--text-muted);
margin-left: 8px;
}