Kanban UI

pull/1/head
yflory 2019-12-04 11:18:25 +01:00
parent 69d8b413a6
commit 0b0ce98fc7
2 changed files with 3 additions and 2 deletions

View File

@ -54,6 +54,7 @@
.kanban-item-text {
cursor: text;
overflow-wrap: anywhere;
flex: 1;
}
}
@ -67,7 +68,7 @@
margin-right: 10px;
min-width: 0;
overflow: hidden;
white-space: nowrap;
//white-space: nowrap;
text-overflow: ellipsis;
}
#kanban-edit {

View File

@ -349,7 +349,7 @@
titleBoard = document.createElement('div');
titleBoard.classList.add('kanban-title-board');
titleBoard.innerHTML = board.title;
titleBoard.setAttribute('title', board.title);
//titleBoard.setAttribute('title', board.title);
titleBoard.clickfn = board.boardTitleClick;
__onboardTitleClickHandler(titleBoard);
headerBoard.appendChild(titleBoard);