From dbc1730bdd22532b36a4deb0496dbcdae34280d5 Mon Sep 17 00:00:00 2001 From: Marlene Simondant <msimondant@grandlyon.com> Date: Thu, 15 Feb 2024 10:58:17 +0100 Subject: [PATCH] fix(scss) : remove duplicate color --- src/app/post/components/post-card/post-card.component.scss | 2 +- .../post/components/post-details/post-details.component.scss | 2 +- src/app/profile/profile.component.scss | 2 +- .../no-information/no-information.component.scss | 2 +- .../structure-edition-summary.component.scss | 2 +- .../structure-hours/structure-hours-list.component.scss | 2 +- src/app/structure-list/components/card/card.component.scss | 4 ++-- .../structure-details/structure-details.component.scss | 2 +- src/assets/scss/_color.scss | 1 - 9 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/app/post/components/post-card/post-card.component.scss b/src/app/post/components/post-card/post-card.component.scss index 058698b00..5e1fcacf0 100644 --- a/src/app/post/components/post-card/post-card.component.scss +++ b/src/app/post/components/post-card/post-card.component.scss @@ -47,7 +47,7 @@ .details { @include font-regular-14; - color: $grey-4-text; + color: $grey-4-5-1; } } } diff --git a/src/app/post/components/post-details/post-details.component.scss b/src/app/post/components/post-details/post-details.component.scss index 9fe01a944..3a25d27d4 100644 --- a/src/app/post/components/post-details/post-details.component.scss +++ b/src/app/post/components/post-details/post-details.component.scss @@ -38,7 +38,7 @@ h1 { flex-direction: column; gap: 4px; @include font-regular-14; - color: $grey-4-text; + color: $grey-4-5-1; } .informations { diff --git a/src/app/profile/profile.component.scss b/src/app/profile/profile.component.scss index c9c86211c..5003e5110 100644 --- a/src/app/profile/profile.component.scss +++ b/src/app/profile/profile.component.scss @@ -84,7 +84,7 @@ section { } .job { @include font-regular-15; - color: $grey-4-text; + color: $grey-4-5-1; } .contact { diff --git a/src/app/profile/structure-edition-summary/no-information/no-information.component.scss b/src/app/profile/structure-edition-summary/no-information/no-information.component.scss index 02f9e779c..442c7da16 100644 --- a/src/app/profile/structure-edition-summary/no-information/no-information.component.scss +++ b/src/app/profile/structure-edition-summary/no-information/no-information.component.scss @@ -1,7 +1,7 @@ @import 'color'; .noInformation { - color: $grey-4-text; + color: $grey-4-5-1; font-weight: 400; font-style: italic; margin: 0; diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss b/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss index 25887a73b..a0475cf54 100644 --- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss +++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss @@ -33,7 +33,7 @@ color: $red; } p { - color: $grey-4-text; + color: $grey-4-5-1; } } diff --git a/src/app/shared/components/structure-hours/structure-hours-list.component.scss b/src/app/shared/components/structure-hours/structure-hours-list.component.scss index f3a0133bc..0f5159d0f 100644 --- a/src/app/shared/components/structure-hours/structure-hours-list.component.scss +++ b/src/app/shared/components/structure-hours/structure-hours-list.component.scss @@ -48,7 +48,7 @@ ul.hoursContainer { } .openingTime { @include font-regular-13; - color: $grey-4-text; + color: $grey-4-5-1; display: flex; gap: 8px; } diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss index 443d32b9c..a984c434a 100644 --- a/src/app/structure-list/components/card/card.component.scss +++ b/src/app/structure-list/components/card/card.component.scss @@ -60,12 +60,12 @@ } .structureLocation { @include font-regular-14; - color: $grey-4-text; + color: $grey-4-5-1; } .structureLocationDot { font-size: 0.3rem; - color: $grey-4-text; + color: $grey-4-5-1; } } diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss index 89b029fa9..919fd701d 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.scss +++ b/src/app/structure-list/components/structure-details/structure-details.component.scss @@ -110,7 +110,7 @@ section.actions { section.informations { .light { font-weight: 400; - color: $grey-4-text; + color: $grey-4-5-1; } } diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss index 76a0ac0c0..c5384d2d3 100644 --- a/src/assets/scss/_color.scss +++ b/src/assets/scss/_color.scss @@ -7,7 +7,6 @@ $grey-1: #333333; $grey-2-v3: #4c4d53; $grey-3: #696969; $grey-4: #949494; -$grey-4-text: #767676; $grey-5: #bdbdbd; $grey-6: #dedede; $grey-7: #e9e9e9; -- GitLab