From 05883e41153f29eacc3fc19f11670d757aa75817 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 31 May 2023 04:00:52 +0300 Subject: [PATCH] Add style for default kind in ProgressBar (cherry picked from commit 4ab1cb393ac682cb06625f42ffc6131e9bd72500) --- frontend/src/Components/ProgressBar.css | 4 ++++ frontend/src/Components/ProgressBar.css.d.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/frontend/src/Components/ProgressBar.css b/frontend/src/Components/ProgressBar.css index bee34a187..373aee011 100644 --- a/frontend/src/Components/ProgressBar.css +++ b/frontend/src/Components/ProgressBar.css @@ -45,6 +45,10 @@ cursor: default; } +.default { + background-color: var(--darkGray); +} + .primary { background-color: var(--primaryColor); } diff --git a/frontend/src/Components/ProgressBar.css.d.ts b/frontend/src/Components/ProgressBar.css.d.ts index 8fccb71f4..6e749a25f 100644 --- a/frontend/src/Components/ProgressBar.css.d.ts +++ b/frontend/src/Components/ProgressBar.css.d.ts @@ -5,6 +5,7 @@ interface CssExports { 'backTextContainer': string; 'container': string; 'danger': string; + 'default': string; 'frontText': string; 'frontTextContainer': string; 'info': string;