From c6e4eef8dbd6293f32caec33b351a96640ff1e1e Mon Sep 17 00:00:00 2001
From: Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de>
Date: Tue, 10 Oct 2023 15:31:53 +0000
Subject: [PATCH] only apply i18n padding to toolbar grouping element, fixes
 #3211

Closes #3211

Merge request studip/studip!2261
---
 resources/assets/stylesheets/scss/i18n.scss | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/resources/assets/stylesheets/scss/i18n.scss b/resources/assets/stylesheets/scss/i18n.scss
index 1692a7abc42..318c1c84070 100644
--- a/resources/assets/stylesheets/scss/i18n.scss
+++ b/resources/assets/stylesheets/scss/i18n.scss
@@ -29,8 +29,8 @@ div.i18n_group {
     }
 
     > div.i18n {
-        input[type=text], > textarea, .editor_toolbar .buttons, .ck-toolbar {
-            padding-left: ($max-width + 6px) !important;
+        input[type=text], > textarea, .editor_toolbar .buttons, .ck.ck-toolbar_grouping {
+            padding-left: calc($max-width + 6px);
         }
 
         > div.editor_toolbar {
-- 
GitLab