From 039d1b191b31192646cc02d1045b6fc76f2cc4a8 Mon Sep 17 00:00:00 2001
From: Moritz Strohm <strohm@data-quest.de>
Date: Mon, 22 Apr 2024 17:12:39 +0200
Subject: [PATCH] use grid width for tooltips, disabled remaining code in
 bootstrap/tooltip.js

---
 resources/assets/javascripts/bootstrap/tooltip.js | 3 ++-
 resources/assets/stylesheets/scss/tooltip.scss    | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/resources/assets/javascripts/bootstrap/tooltip.js b/resources/assets/javascripts/bootstrap/tooltip.js
index 2a7d2f96555..2c87cbd3bdc 100644
--- a/resources/assets/javascripts/bootstrap/tooltip.js
+++ b/resources/assets/javascripts/bootstrap/tooltip.js
@@ -7,7 +7,7 @@
 var timeout = null;
 
 STUDIP.Tooltip.threshold = 6;
-
+/*
 $(document).on('mouseenter mouseleave focusin focusout', '[data-tooltip],.tooltip:has(.tooltip-content)', function(event) {
     let data = $(this).data();
     const visible = event.type === 'mouseenter' || event.type === 'focusin';
@@ -32,3 +32,4 @@ $(document).on('mouseenter mouseleave focusin focusout', '[data-tooltip],.toolti
 }).on('mouseleave focusout', '.studip-tooltip', function() {
     $(this).hide();
 });
+*/
diff --git a/resources/assets/stylesheets/scss/tooltip.scss b/resources/assets/stylesheets/scss/tooltip.scss
index 66092a3500b..114b596c0e9 100644
--- a/resources/assets/stylesheets/scss/tooltip.scss
+++ b/resources/assets/stylesheets/scss/tooltip.scss
@@ -42,7 +42,7 @@
         bottom: 100%;
         display: inline-block;
         left: 50%;
-        margin-left: -129px;
-        width: 230px;
+        margin-left: -($grid-element-width) / 2 - 10px;
+        width: $grid-element-width;
     }
 }
-- 
GitLab