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 853f005180)
This commit is contained in:
Beowulf 2024-05-17 22:48:36 +02:00
parent 0d06f3c2dd
commit 972dd76eeb
No known key found for this signature in database
GPG key ID: 44225F5F2792841D

View file

@ -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 {