From d85869ec9e69a33a89948a00ef3b432450dbcd2c Mon Sep 17 00:00:00 2001
From: Jan-Hendrik Willms <tleilax+studip@gmail.com>
Date: Tue, 15 Oct 2024 10:55:30 +0000
Subject: [PATCH] fix weird expansion of top bar when hovering notification
 container, fixes #4698

Closes #4698

Merge request studip/studip!3493
---
 resources/assets/stylesheets/scss/personal-notifications.scss | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/resources/assets/stylesheets/scss/personal-notifications.scss b/resources/assets/stylesheets/scss/personal-notifications.scss
index 9f61e5f46b7..cdad081fb77 100644
--- a/resources/assets/stylesheets/scss/personal-notifications.scss
+++ b/resources/assets/stylesheets/scss/personal-notifications.scss
@@ -41,6 +41,10 @@
         left: (-$list-width);
         right: 0;
         height: $arrow-height;
+
+        // The following transformations eliminates a bug that would expand
+        // the #top-bar when the container is hovered
+        transform: translate3d(0, 0, 0);
     }
     &:hover::after {
         content: "";
-- 
GitLab