FlightCard/FlightDetailsAccordion: #8a8a8a → $light-gray (brand palette parity)

This commit is contained in:
2026-04-20 15:28:15 +03:00
parent 23b5a35c70
commit f823aafb35
2 changed files with 7 additions and 5 deletions
@@ -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;
}
}
+5 -3
View File
@@ -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;
}