From 972dd76eeb86d95409bdff330c3336abdcc7f591 Mon Sep 17 00:00:00 2001 From: Beowulf Date: Fri, 17 May 2024 22:48:36 +0200 Subject: [PATCH] fixed overflow of projects column title This fixes that titles of project columns can overflow and push the action menu out of the card, so that interaction is no longer possible. Addition to the cherry pick: In v7.0, `min-width: 0` is additionally applied to the title of the project column, as this is missing for the .ui.label in contrast to v8.0. Fixes #3717 (cherry picked from commit 853f0051809aa4b8a3fec4c16e2871a3bb716c83) --- web_src/css/features/projects.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web_src/css/features/projects.css b/web_src/css/features/projects.css index d8f9c9ef89..38b5258d7d 100644 --- a/web_src/css/features/projects.css +++ b/web_src/css/features/projects.css @@ -37,6 +37,16 @@ line-height: 1.25 !important; color: inherit !important; cursor: inherit; + min-width: 0; +} + +.project-column-title-label { + overflow: hidden; + text-overflow: ellipsis; +} + +.project-column-header > .dropdown { + flex-shrink: 0; } .project-column > .cards {