Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
fix(task): break long task titles after 4 lines only
Browse files Browse the repository at this point in the history
  • Loading branch information
kolaente committed Jun 23, 2023
1 parent 8a22d18 commit a446310
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/tasks/partials/singleTaskInProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,15 @@ function hideDeferDueDatePopup(e) {
.tasktext,
&.tasktext {
white-space: nowrap;
text-overflow: ellipsis;
word-wrap: break-word;
word-break: break-word;
display: -webkit-box;
hyphens: auto;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
display: inline-block;
flex: 1 0 50%;
.dueDate {
Expand Down

0 comments on commit a446310

Please sign in to comment.