perfViz/src/components/httprequestviewer/RequestRowSummary.module.css
Michael Mainguy 2ee9c3fc28 Implement standardized CSS status classes and improve header rendering
- 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>
2025-08-11 19:06:12 -05:00

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;
}