From 3f04887d9283774e0c3e41dd44045fb0c144f949 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Fri, 7 Nov 2025 14:18:40 +0100 Subject: [PATCH 1/2] fix: minor style fixes * Fixes that the neutral color for bar chars was blending into the background. * Uses a different icon for tests. * Removes text selection when clicking on the bar chart. --- report-app/src/app/pages/report-viewer/report-viewer.html | 8 ++++---- .../stacked-bar-chart/stacked-bar-chart.scss | 1 + report-app/src/styles.scss | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/report-app/src/app/pages/report-viewer/report-viewer.html b/report-app/src/app/pages/report-viewer/report-viewer.html index 9b65958..f301778 100644 --- a/report-app/src/app/pages/report-viewer/report-viewer.html +++ b/report-app/src/app/pages/report-viewer/report-viewer.html @@ -66,7 +66,7 @@

Runner

- build + build Build

@@ -76,7 +76,7 @@

@if (overview.stats.tests) {

- quiz + assignment Tests

@@ -87,7 +87,7 @@

@if (overview.stats.runtime) {

- schedule + schedule Runtime

@@ -101,7 +101,7 @@

@if (overview.stats.security) {

- security + security Security

diff --git a/report-app/src/app/shared/visualization/stacked-bar-chart/stacked-bar-chart.scss b/report-app/src/app/shared/visualization/stacked-bar-chart/stacked-bar-chart.scss index d3f6a38..e5bb19b 100644 --- a/report-app/src/app/shared/visualization/stacked-bar-chart/stacked-bar-chart.scss +++ b/report-app/src/app/shared/visualization/stacked-bar-chart/stacked-bar-chart.scss @@ -37,6 +37,7 @@ font-weight: 500; transition: filter 0.2s ease-in-out; min-width: 50px; + user-select: none; &:first-child { border-top-left-radius: 8px; diff --git a/report-app/src/styles.scss b/report-app/src/styles.scss index 3d0bcb2..9edee23 100644 --- a/report-app/src/styles.scss +++ b/report-app/src/styles.scss @@ -30,7 +30,7 @@ --status-fill-great: #84cc16; --status-fill-good: #f59e0b; --status-fill-poor: #ef4444; - --status-fill-neutral: #eff6ff; + --status-fill-neutral: #aaa; --status-text-excellent: #0c855d; --status-text-great: #0c855d; // TODO: do we want to differentiate from `excellent`? From 26641cd84ad61ef52c5df20babf20b9ca393edb9 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Fri, 7 Nov 2025 14:19:40 +0100 Subject: [PATCH 2/2] build: bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2bd0953..89f0116 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web-codegen-scorer", - "version": "0.0.23", + "version": "0.0.24", "scripts": { "build-runner": "tsc", "release-build": "tsx ./scripts/release-build.ts",