From 4dfe98f40a128372aaa4d34dea6456206d3deaec Mon Sep 17 00:00:00 2001 From: fs Date: Mon, 6 Apr 2026 00:54:13 +0200 Subject: [PATCH] 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) --- modules/helpdesk/web/css/helpdesk.css | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/modules/helpdesk/web/css/helpdesk.css b/modules/helpdesk/web/css/helpdesk.css index 9726397..c2218ab 100644 --- a/modules/helpdesk/web/css/helpdesk.css +++ b/modules/helpdesk/web/css/helpdesk.css @@ -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 {