File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed
src/main/resources/templates/layout Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 30
30
31
31
< ul th:fragment ="tw-project-submenu(projectList, thisProject) " style ="list-style: none; ">
32
32
< li th:each ="project : ${projectList} ">
33
- < span th:if ="${project == thisProject} " class ="btn btn-outline- dark ">
33
+ < span th:if ="${project == thisProject} " class ="btn btn-dark btn-sm ">
34
34
< i class ="fa-solid fa-diagram-project "> </ i >
35
35
< strong th:id ="'project_' + ${project.id} "
36
36
th:text ="${project.name} "
37
37
ondrop ="drop2project(event) " ondragover ="allowDrop2Project(event) "
38
38
draggable ="true " ondragstart ="dragProject(event) ">
39
39
</ strong >
40
40
</ span >
41
- < span th:if ="${project != thisProject} " class ="btn btn-outline-dark ">
42
- < i class ="fa-solid fa-diagram-project "> </ i >
43
- < a th:id ="'project_' + ${project.id} "
44
- th:text ="${project.name} "
41
+ < span th:if ="${project != thisProject} ">
42
+ < a th:id ="'project_' + ${project.id} "
45
43
th:href ="@{/project/{id}(id=${project.id})} "
46
44
ondrop ="drop2project(event) " ondragover ="allowDrop2Project(event) "
47
- draggable ="true " ondragstart ="dragProject(event) " class ="m-2 btm btn-outline-dark ">
45
+ draggable ="true " ondragstart ="dragProject(event) " class ="m-2 btn btn-outline-dark btn-sm ">
46
+ < i class ="fa-solid fa-diagram-project "> </ i >
47
+ < span th:text ="${project.name} "> </ span >
48
48
</ a >
49
49
</ span >
50
50
< span th:if ="${project.children.size() gt 0} ">
Original file line number Diff line number Diff line change 118
118
</ td >
119
119
< td th:id ="'task_' + ${task.id} + '_col_project' " class ="task_col task_col_project "
120
120
th:if ="${myTaskState ne 'PROJECT'} ">
121
- < a th:href ="@{/project/{id}(id=${task.project.id})} " th:if ="${task.project ne null} "
121
+ < a th:href ="@{/project/{id}(id=${task.project.id})} "
122
+ th:if ="${task.project ne null} "
122
123
th:id ="'task_' + ${task.id} + '_col_project' "
123
124
draggable ="true " ondragstart ="dragTask(event) "
124
- class ="task_col_content task_col_content_project twtooltip "
125
+ class ="btn btn-outline-dark btn-sm task_col_content task_col_content_project twtooltip "
125
126
th:alt-title ="#{task.col.twtooltip.project} ">
126
- < i class ="fas fa-folder-open "> </ i >
127
+ < i class ="fa-solid fa-diagram-project "> </ i >
127
128
< span th:text ="${task.project.name} "> </ span >
128
129
</ a >
129
130
</ td >
You can’t perform that action at this time.
0 commit comments