Browse Source

Feature/restore colors of various components (#5442)

Restore colors of various components

* checkbox
* form field
* slider
* stepper
feature/migrate-from-angular-material-design-2-to-3
Thomas Kaul 3 weeks ago
parent
commit
2b9b368d97
  1. 27
      apps/client/src/styles/theme.scss

27
apps/client/src/styles/theme.scss

@ -283,6 +283,12 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
)
);
@include mat.checkbox-overrides(
(
selected-icon-color: var(--gf-theme-primary-500)
)
);
@include mat.datepicker-overrides(
(
calendar-container-elevation-shadow: var(
@ -308,6 +314,27 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest);
)
);
@include mat.form-field-overrides(
(
outlined-focus-label-text-color: var(--gf-theme-primary-500),
outlined-focus-outline-color: var(--gf-theme-primary-500)
)
);
@include mat.slider-overrides(
(
active-track-color: var(--gf-theme-primary-500),
focus-handle-color: var(--gf-theme-primary-500),
handle-color: var(--gf-theme-primary-500)
)
);
@include mat.stepper-overrides(
(
header-selected-state-icon-background-color: var(--gf-theme-primary-500)
)
);
@include mat.tabs-overrides(
(
active-focus-label-text-color: var(--gf-theme-primary-500),

Loading…
Cancel
Save