fix(helpdesk): replace bulky score circle with clean colored number

Remove background circle, just show the score as a large colored
number. Lighter, more Stripe-like.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 00:54:13 +02:00
parent 4d23feb555
commit 4dfe98f40a

View File

@@ -568,28 +568,21 @@
.helpdesk-risk-card-score {
font-variant-numeric: tabular-nums;
font-weight: 700;
font-size: 1.25rem;
min-width: 2.6rem;
height: 2.6rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 1.5rem;
flex-shrink: 0;
color: #fff;
line-height: 1;
}
.helpdesk-risk-card-score.helpdesk-risk-level-high {
background: var(--app-danger, #dc3545);
color: var(--app-danger, #dc3545);
}
.helpdesk-risk-card-score.helpdesk-risk-level-medium {
background: var(--app-warning, #f59e0b);
color: var(--app-warning, #f59e0b);
}
.helpdesk-risk-card-score.helpdesk-risk-level-low {
background: var(--app-success, #198754);
color: var(--app-success, #198754);
}
.helpdesk-risk-card-info {