From fe00d8db98fc95f5174626e5d7d1c84dd4b2f5aa Mon Sep 17 00:00:00 2001 From: Jeremy Davis Date: Tue, 16 Jan 2024 17:11:59 +0100 Subject: [PATCH] SONAR-21423 Migrate license page to the new UI --- server/sonar-web/design-system/src/theme/light.ts | 4 ++++ .../sonar-web/src/main/js/app/components/GlobalContainer.tsx | 1 + 2 files changed, 5 insertions(+) diff --git a/server/sonar-web/design-system/src/theme/light.ts b/server/sonar-web/design-system/src/theme/light.ts index 1534f0adb1d..8dbe198345f 100644 --- a/server/sonar-web/design-system/src/theme/light.ts +++ b/server/sonar-web/design-system/src/theme/light.ts @@ -622,6 +622,10 @@ export const lightTheme = { // Keyboard hint keyboardHintKey: COLORS.blueGrey[100], + + // progressBar + progressBarForeground: COLORS.indigo[500], + progressBarBackground: COLORS.indigo[100], }, // contrast colors to be used for text when using a color background with the same name diff --git a/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx b/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx index bd4578da061..1218844d96b 100644 --- a/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx +++ b/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx @@ -40,6 +40,7 @@ import UpdateNotification from './update-notification/UpdateNotification'; const TEMP_PAGELIST_WITH_NEW_BACKGROUND = [ '/admin/extension/governance/views_console', + '/admin/extension/license', '/code', '/coding_rules', '/component_measures', -- 2.39.5