From fe8214df89a5a1a6f60af17d103fa4606f4a6115 Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 22 Feb 2023 09:46:34 +0100 Subject: [PATCH 01/16] change contribution design an all and my contribution icons --- .../src/components/Contributions/ContributionListItem.vue | 8 ++++---- frontend/src/layouts/templates/CommunityTemplate.vue | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/Contributions/ContributionListItem.vue b/frontend/src/components/Contributions/ContributionListItem.vue index d830f1bcd..5b9bfb82f 100644 --- a/frontend/src/components/Contributions/ContributionListItem.vue +++ b/frontend/src/components/Contributions/ContributionListItem.vue @@ -2,7 +2,7 @@
@@ -25,7 +25,7 @@
{{ $t('contributionText') }}
{{ memo }}
-
+
{{ $t('contribution.alert.answerQuestion') }}
@@ -189,14 +189,14 @@ export default { if (this.deletedAt) return 'trash' if (this.deniedAt) return 'x-circle' if (this.confirmedAt) return 'check' - if (this.state === 'IN_PROGRESS') return 'question-circle' + if (this.state === 'IN_PROGRESS') return 'question' return 'bell-fill' }, variant() { if (this.deletedAt) return 'danger' if (this.deniedAt) return 'warning' if (this.confirmedAt) return 'success' - if (this.state === 'IN_PROGRESS') return 'f5' + if (this.state === 'IN_PROGRESS') return '205' return 'primary' }, date() { diff --git a/frontend/src/layouts/templates/CommunityTemplate.vue b/frontend/src/layouts/templates/CommunityTemplate.vue index 448c06bd2..f014af2c0 100644 --- a/frontend/src/layouts/templates/CommunityTemplate.vue +++ b/frontend/src/layouts/templates/CommunityTemplate.vue @@ -24,7 +24,7 @@ {{ $t('contribution.alert.pending') }}
  • - + {{ $t('contribution.alert.in_progress') }}
  • @@ -54,7 +54,7 @@ {{ $t('contribution.alert.pending') }}
  • - + {{ $t('contribution.alert.in_progress') }}
  • From 9825cf88763461a4501cc2991c719db218507d5f Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 22 Feb 2023 13:41:20 +0100 Subject: [PATCH 02/16] commnity navbar style refactor --- .../Template/ContentHeader/NavCommunity.vue | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/frontend/src/components/Template/ContentHeader/NavCommunity.vue b/frontend/src/components/Template/ContentHeader/NavCommunity.vue index ca96ce914..11c4d2c35 100644 --- a/frontend/src/components/Template/ContentHeader/NavCommunity.vue +++ b/frontend/src/components/Template/ContentHeader/NavCommunity.vue @@ -1,21 +1,21 @@