Match Angular typography on row titles, Закончена status, last-update

- Accordion row captions ('Регистрация', 'Посадка', 'Высадка', 'Борт',
  'Питание на борту', 'Услуги на борту') were rendered at 14px/500/#222.
  Angular shows them at 12px/400/#657282 (neutral grey) so the row reads
  as [icon] [small caption + large status] rather than competing with
  the status text. Retune.
- Status labels ('Закончена' / 'Идет' / 'Ожидается') bumped from 14px
  to 16px and the Finished color switched from #e55353 to Aeroflot red
  #c8102e to match the corporate palette Angular uses.
- Last-update strip ('Последнее обновление: 18:25 18.04.2026') sized
  from 14px/#666 down to 12px/#333 so it sits quietly under the share
  icon instead of fighting for attention.
This commit is contained in:
2026-04-19 02:06:35 +03:00
parent 5238ee4162
commit fd79fa0faf
2 changed files with 14 additions and 7 deletions
@@ -78,9 +78,12 @@
.last-update {
display: flex;
align-items: center;
gap: 8px;
gap: 6px;
font-size: 12px;
color: #333;
&__description { font-size: 12px; color: #666; }
&__description { font-size: 12px; color: #333; }
&__time { font-size: 12px; color: #333; }
.share-button-wrap {
@media (min-width: 769px) { display: none; }
@@ -83,10 +83,12 @@
gap: 4px;
}
// Row caption label (Регистрация / Борт / Питание на борту / etc.)
// Angular renders at 12px in a neutral grey (#657282).
&__title {
font-weight: 500;
color: #222;
font-size: 14px;
font-weight: 400;
color: #657282;
font-size: 12px;
}
&__subtitle {
@@ -96,8 +98,10 @@
word-break: break-word;
}
// Status label (Закончена / Идет / Ожидается). Angular sizes it 16px
// and uses Aeroflot red (#C8102E) for the 'Finished' state.
&__status {
font-size: 14px;
font-size: 16px;
font-weight: 500;
&--scheduled {
@@ -110,7 +114,7 @@
}
&--finished {
color: #e55353;
color: #c8102e;
}
&--expected {