From 4cfbf772a0251ff5590cf2d51fc8453289e3fd92 Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 20 Mar 2023 11:43:51 +0100 Subject: [PATCH 1/6] fix(webapp): small buttons in notifications menu --- .../NotificationMenu/NotificationMenu.vue | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/webapp/components/NotificationMenu/NotificationMenu.vue b/webapp/components/NotificationMenu/NotificationMenu.vue index 7fcfabe82..14441f4cf 100644 --- a/webapp/components/NotificationMenu/NotificationMenu.vue +++ b/webapp/components/NotificationMenu/NotificationMenu.vue @@ -19,15 +19,15 @@ - + {{ $t('notifications.pageLink') }} - + - + {{ $t('notifications.markAllAsRead') }} - + @@ -144,16 +144,15 @@ export default { From a1b12568ef1d486c08e10a1f6892d897d56015d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 20 Mar 2023 13:36:02 +0100 Subject: [PATCH 2/6] Revert PR 'feat(webapp): on newsfeed add bigger y-gap between posts' #6121 --- webapp/components/MasonryGrid/MasonryGrid.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/MasonryGrid/MasonryGrid.vue b/webapp/components/MasonryGrid/MasonryGrid.vue index f95c0e16e..00afa31af 100644 --- a/webapp/components/MasonryGrid/MasonryGrid.vue +++ b/webapp/components/MasonryGrid/MasonryGrid.vue @@ -30,7 +30,7 @@ export default { /* dirty fix to override broken styleguide inline-styles */ .ds-grid { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)) !important; - gap: 32px 16px !important; + gap: 16px !important; grid-auto-rows: 20px; } From 393c657e27baca3b8334e3bf2ca630ffc8eb1b19 Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 20 Mar 2023 14:08:32 +0100 Subject: [PATCH 3/6] Add class for the flex items --- webapp/components/Dropdown.vue | 2 +- .../NotificationMenu/NotificationMenu.vue | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/webapp/components/Dropdown.vue b/webapp/components/Dropdown.vue index 7e4d21223..0dfff3736 100644 --- a/webapp/components/Dropdown.vue +++ b/webapp/components/Dropdown.vue @@ -33,7 +33,7 @@ export default { data() { return { isPopoverOpen: false, - developerNoAutoClosing: false, // stops automatic closing of menu for developer purposes: default is 'false' + developerNoAutoClosing: true, // stops automatic closing of menu for developer purposes: default is 'false' } }, computed: { diff --git a/webapp/components/NotificationMenu/NotificationMenu.vue b/webapp/components/NotificationMenu/NotificationMenu.vue index 14441f4cf..d777cfe5f 100644 --- a/webapp/components/NotificationMenu/NotificationMenu.vue +++ b/webapp/components/NotificationMenu/NotificationMenu.vue @@ -17,14 +17,14 @@ - + {{ $t('notifications.pageLink') }} - + {{ $t('notifications.markAllAsRead') }} @@ -148,11 +148,11 @@ export default { .notifications-link-container { background-color: $background-color-softer-active; justify-content: center; - bottom: 0; - left: 0; - right: 0; - height: 62px; padding: $space-x-small; - flex-direction: column; + flex-direction: row; +} +.notifications-link-container-item { + justify-content: center; + display: flex; } From 593b81c501a720dd1db674c742329fcc342326f6 Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 20 Mar 2023 14:44:24 +0100 Subject: [PATCH 4/6] fix(webapp): close popover notification menu --- webapp/components/NotificationMenu/NotificationMenu.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/webapp/components/NotificationMenu/NotificationMenu.vue b/webapp/components/NotificationMenu/NotificationMenu.vue index 7fcfabe82..ceac606b0 100644 --- a/webapp/components/NotificationMenu/NotificationMenu.vue +++ b/webapp/components/NotificationMenu/NotificationMenu.vue @@ -12,7 +12,7 @@ -