fix: update styles in various components to use dynamic theming and improve layout consistency

This commit is contained in:
Juergen Kunz
2025-06-19 12:14:52 +00:00
parent 2ab2e30336
commit 3ba47f9a71
9 changed files with 333 additions and 239 deletions

View File

@ -44,7 +44,7 @@ export class OpsViewOverview extends DeesElement {
margin: 32px 0 16px 0;
font-size: 24px;
font-weight: 600;
color: #333;
color: ${cssManager.bdTheme('#333', '#ccc')};
}
.chartGrid {
@ -57,15 +57,15 @@ export class OpsViewOverview extends DeesElement {
.loadingMessage {
text-align: center;
padding: 40px;
color: #666;
color: ${cssManager.bdTheme('#666', '#999')};
}
.errorMessage {
background-color: #fee;
border: 1px solid #fcc;
background-color: ${cssManager.bdTheme('#fee', '#4a1f1f')};
border: 1px solid ${cssManager.bdTheme('#fcc', '#6a2f2f')};
border-radius: 4px;
padding: 16px;
color: #c00;
color: ${cssManager.bdTheme('#c00', '#ff6666')};
margin: 16px 0;
}