From f823aafb35df7652cc8be9679944416187b63a27 Mon Sep 17 00:00:00 2001 From: gnezim Date: Mon, 20 Apr 2026 15:28:15 +0300 Subject: [PATCH] =?UTF-8?q?FlightCard/FlightDetailsAccordion:=20#8a8a8a=20?= =?UTF-8?q?=E2=86=92=20$light-gray=20(brand=20palette=20parity)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/details-panels/FlightDetailsAccordion.scss | 4 ++-- src/ui/flights/FlightCard.scss | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/features/online-board/components/details-panels/FlightDetailsAccordion.scss b/src/features/online-board/components/details-panels/FlightDetailsAccordion.scss index df3e3d1d..ec1de077 100644 --- a/src/features/online-board/components/details-panels/FlightDetailsAccordion.scss +++ b/src/features/online-board/components/details-panels/FlightDetailsAccordion.scss @@ -118,7 +118,7 @@ font-weight: 500; &--scheduled { - color: #8a8a8a; + color: colors.$light-gray; } &--inprogress, @@ -135,7 +135,7 @@ } &--specified { - color: #8a8a8a; + color: colors.$light-gray; } } diff --git a/src/ui/flights/FlightCard.scss b/src/ui/flights/FlightCard.scss index 108dd86d..a45a4230 100644 --- a/src/ui/flights/FlightCard.scss +++ b/src/ui/flights/FlightCard.scss @@ -204,8 +204,10 @@ &--finished .flight-card__status-dot { background: colors.$green; } &--inprogress .flight-card__status-dot { background: colors.$blue; } &--expected .flight-card__status-dot { background: colors.$orange; } - &--specified .flight-card__status-dot { background: #8a8a8a; } - &--scheduled .flight-card__status-dot { background: #8a8a8a; } + // `Уточняется` / `Запланирован` — Angular renders these as neutral + // grey dots via the brand's $light-gray token. + &--specified .flight-card__status-dot { background: colors.$light-gray; } + &--scheduled .flight-card__status-dot { background: colors.$light-gray; } } &__status-dot { @@ -213,7 +215,7 @@ width: 8px; height: 8px; border-radius: 50%; - background: #8a8a8a; + background: colors.$light-gray; flex-shrink: 0; }