From eb446cf039379c5bdf32556c0c1bc7702c1610e1 Mon Sep 17 00:00:00 2001 From: Debora Crescenzo Date: Mon, 28 Jul 2025 11:51:34 +0100 Subject: [PATCH] MT#63310 Improve handling of long words in main menu When the German translation is on, long words are not readable without moving the side bar. This commit increases the size of the side menu and reduces the indent of sub-menus Change-Id: Idb09587fe58907347f2461d6adc9a2a2706125b7 (cherry picked from commit 0340bd7e3cf869558cf9c8e91289917b04be969f) (cherry picked from commit ff380fb2168973c8ca7f7e10e9f1a512d612ea67) --- src/components/CscMainMenu.vue | 2 +- src/layouts/CscLayoutMain.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/CscMainMenu.vue b/src/components/CscMainMenu.vue index 5450d3d9..09fef0d5 100644 --- a/src/components/CscMainMenu.vue +++ b/src/components/CscMainMenu.vue @@ -8,7 +8,7 @@ :key="index + '_childs'" :label="item.label" :icon="item.icon" - :content-inset-level="1" + :content-inset-level="0.5" group="cscMainMenu" class="text-weight-bold" > diff --git a/src/layouts/CscLayoutMain.vue b/src/layouts/CscLayoutMain.vue index 372a398f..77331b45 100644 --- a/src/layouts/CscLayoutMain.vue +++ b/src/layouts/CscLayoutMain.vue @@ -110,7 +110,7 @@ class="bg-main-menu" :behavior="drawerBehavior" show-if-above - :width="280" + :width="316" @mouseleave="minimizeMenu" @mouseenter="maximizeMenu" @on-layout="layoutResized"