- Add dark theme variables and standardized status classes to App.module.css - Convert RequestRowSummary to use CSS modules with success/warning/danger classes - Replace inline styles with class-based styling for better theme compatibility - Enhance RequestRowDetails header display with monospace font and hover tooltips - Implement proper header name/value layout with grid system and overflow handling - Remove deprecated CSS files and consolidate styling approach 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
491 B
CSS
29 lines
491 B
CSS
/* Standardized status indicator classes */
|
|
.success {
|
|
background-color: var(--color-bg-success);
|
|
color: var(--color-success);
|
|
|
|
}
|
|
|
|
.warning {
|
|
background-color: var(--color-bg-warning);
|
|
color: var(--color-warning);
|
|
|
|
}
|
|
|
|
.danger {
|
|
background-color: var(--color-bg-danger);
|
|
color: var(--color-danger);
|
|
|
|
}
|
|
td {
|
|
padding: 2px 8px;
|
|
border-radius: var(--radius-md);
|
|
}
|
|
tr {
|
|
border: 1px solid #ffffff;
|
|
}
|
|
a {
|
|
color: var(--color-text);
|
|
text-decoration: none;
|
|
} |