Browse Source
Feature/restore styles of card (#5319)
* Restore styles of card
pull/5325/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
16 additions and
7 deletions
-
apps/client/src/styles.scss
-
apps/client/src/styles/theme.scss
|
|
@ -251,11 +251,6 @@ body { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.mat-mdc-card { |
|
|
|
--mat-card-elevated-container-color: var(--dark-background); |
|
|
|
--mat-card-outlined-container-color: var(--dark-background); |
|
|
|
} |
|
|
|
|
|
|
|
.mat-mdc-fab { |
|
|
|
&.mat-primary { |
|
|
|
--mat-fab-icon-color: rgba(var(--dark-primary-text)); |
|
|
@ -414,8 +409,6 @@ ngx-skeleton-loader { |
|
|
|
|
|
|
|
.mat-mdc-card { |
|
|
|
.mat-mdc-card-title { |
|
|
|
--mat-card-title-text-line-height: 1.2; |
|
|
|
|
|
|
|
margin-bottom: 0.5rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -158,6 +158,14 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); |
|
|
|
|
|
|
|
@include mat.all-component-themes($gf-theme-default); |
|
|
|
|
|
|
|
@include mat.card-overrides( |
|
|
|
( |
|
|
|
outlined-container-color: var(--light-background), |
|
|
|
outlined-outline-color: rgba(var(--dark-dividers)), |
|
|
|
title-text-line-height: 1.2 |
|
|
|
) |
|
|
|
); |
|
|
|
|
|
|
|
@include mat.table-overrides( |
|
|
|
( |
|
|
|
row-item-outline-color: rgba(var(--dark-dividers)) |
|
|
@ -184,6 +192,14 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); |
|
|
|
|
|
|
|
@include mat.all-component-themes($gf-theme-dark); |
|
|
|
|
|
|
|
@include mat.card-overrides( |
|
|
|
( |
|
|
|
outlined-container-color: var(--dark-background), |
|
|
|
outlined-outline-color: rgba(var(--light-dividers)), |
|
|
|
title-text-line-height: 1.2 |
|
|
|
) |
|
|
|
); |
|
|
|
|
|
|
|
@include mat.table-overrides( |
|
|
|
( |
|
|
|
row-item-outline-color: rgba(var(--light-dividers)) |
|
|
|