From df1d4f11d36f7be54836bb34bf768863623609f1 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 29d046063be3989cfbfacc360b003e489f7e8786) --- 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 91d09790..ecd7ce5a 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"