From e1bad8eec1227e6a2ad1c73b2fdb51143c23dcf5 Mon Sep 17 00:00:00 2001 From: andersonid Date: Thu, 16 Oct 2025 17:06:01 -0300 Subject: [PATCH] Fix: Adicionar cores de severidade para Other Issues --- app/static/index.html | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/app/static/index.html b/app/static/index.html index c8f0022..09a36a5 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -1135,6 +1135,24 @@ border: 1px solid var(--pf-global--BorderColor--200); border-radius: 6px; padding: 12px; + border-left: 4px solid var(--pf-global--Color--400); /* Default gray */ + } + + /* CORES BASEADAS EM SEVERIDADE PARA OTHER ISSUES */ + .other-issue-item.error { + border-left-color: var(--pf-global--danger-color--100); /* VERMELHO para ERROR */ + } + + .other-issue-item.warning { + border-left-color: var(--pf-global--warning-color--100); /* AMARELO para WARNING */ + } + + .other-issue-item.info { + border-left-color: var(--pf-global--info-color--100); /* AZUL para INFO */ + } + + .other-issue-item.critical { + border-left-color: var(--pf-global--danger-color--200); /* VERMELHO ESCURO para CRITICAL */ } .issue-type { @@ -2887,7 +2905,7 @@
${issues.map(issue => ` -
+
${issue.validation_type || 'Issue'}

${issue.message || 'No description available'}