fix(task): break long task titles after 4 lines only
Resolves https://github.com/go-vikunja/frontend/issues/84 Resolves https://community.vikunja.io/t/text-wrap-on-lists/1441
This commit is contained in:
parent
8a22d1811e
commit
a446310986
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user