From 4cfbf772a0251ff5590cf2d51fc8453289e3fd92 Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 20 Mar 2023 11:43:51 +0100 Subject: [PATCH 1/3] 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 393c657e27baca3b8334e3bf2ca630ffc8eb1b19 Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 20 Mar 2023 14:08:32 +0100 Subject: [PATCH 2/3] 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 e7d6afbc2636e3aa9c963d2fe181d201e4acf65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 20 Mar 2023 14:44:53 +0100 Subject: [PATCH 3/3] Fix by setting 'developerNoAutoClosing: false' --- webapp/components/Dropdown.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/Dropdown.vue b/webapp/components/Dropdown.vue index 0dfff3736..7e4d21223 100644 --- a/webapp/components/Dropdown.vue +++ b/webapp/components/Dropdown.vue @@ -33,7 +33,7 @@ export default { data() { return { isPopoverOpen: false, - developerNoAutoClosing: true, // stops automatic closing of menu for developer purposes: default is 'false' + developerNoAutoClosing: false, // stops automatic closing of menu for developer purposes: default is 'false' } }, computed: {