From 94de841ef0b1ac34d0565a7a9ac658cfa554b0f1 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sun, 23 Apr 2023 11:02:13 +0200 Subject: [PATCH] Fix the overflow behavior of the grouped toolbar See #18 --- wcfsetup/install/files/style/ui/ckeditor.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wcfsetup/install/files/style/ui/ckeditor.scss b/wcfsetup/install/files/style/ui/ckeditor.scss index fd7c2eff6e..502d2e5581 100644 --- a/wcfsetup/install/files/style/ui/ckeditor.scss +++ b/wcfsetup/install/files/style/ui/ckeditor.scss @@ -82,6 +82,11 @@ flex-shrink: 0; } +.ck.ck-toolbar__grouped-dropdown .ck.ck-toolbar__items { + /* Allow shrinking when the toolbar is being nested. */ + flex-shrink: 1; +} + .ck.ck-reset.ck-dropdown__panel, .ck.ck-balloon-panel { border-color: transparent; -- 2.20.1