From 853f0051809aa4b8a3fec4c16e2871a3bb716c83 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. Fixes #3717 --- web_src/css/features/projects.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web_src/css/features/projects.css b/web_src/css/features/projects.css index 2718bf5142..7ef9d72e17 100644 --- a/web_src/css/features/projects.css +++ b/web_src/css/features/projects.css @@ -39,6 +39,15 @@ cursor: inherit; } +.project-column-title-label { + overflow: hidden; + text-overflow: ellipsis; +} + +.project-column-header > .dropdown { + flex-shrink: 0; +} + .project-column > .cards { flex: 1; display: flex;