Skip to content

Commit 67f0547

Browse files
committed
work
1 parent 2442b82 commit 67f0547

File tree

3 files changed

+28
-26
lines changed

3 files changed

+28
-26
lines changed
Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
<!DOCTYPE html>
2-
<html xmlns="http://www.w3.org/1999/xhtml"
3-
xmlns:th="http://www.thymeleaf.org"
4-
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
5-
xmlns:sd="http://www.thymeleaf.org/spring-data">
6-
7-
<section th:fragment="breadcrumb(breadcrumb)">
8-
<div class="container" sec:authorize="isAuthenticated()" th:if="${breadcrumb != null}">
9-
<nav aria-label="breadcrumb">
10-
<ol class="breadcrumb">
11-
<li th:each="bc,iterStat : ${breadcrumb.getBreadcrumb()}"
12-
th:class="${iterStat == breadcrumb.size()-1 ? 'breadcrumb-item active' : 'breadcrumb-item'}">
13-
<span th:if="${iterStat == breadcrumb.size()-1}" th:text="${bc.name}"></span>
14-
<a th:if="${iterStat != breadcrumb.size()-1}"
15-
th:href="@{{url}(url=${bc.url})}"
16-
th:text="${bc.name}">
17-
</a>
18-
</li>
19-
</ol>
20-
</nav>
21-
</div>
22-
</section>
23-
24-
</html>
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml"
3+
xmlns:th="http://www.thymeleaf.org"
4+
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
5+
xmlns:sd="http://www.thymeleaf.org/spring-data">
6+
7+
<section th:fragment="breadcrumb(breadcrumb)">
8+
<div class="container" sec:authorize="isAuthenticated()" th:if="${breadcrumb != null}">
9+
<nav aria-label="breadcrumb" class="m-1 mb-1 p-2">
10+
<ol class="breadcrumb">
11+
<li th:each="bc,iterStat : ${breadcrumb.getBreadcrumb()}"
12+
th:class="${iterStat == breadcrumb.size()-1 ? 'breadcrumb-item active' : 'breadcrumb-item'}">
13+
<span th:if="${iterStat == breadcrumb.size()-1}" th:text="${bc.name}"></span>
14+
<a th:if="${iterStat != breadcrumb.size()-1}"
15+
th:href="@{{url}(url=${bc.url})}"
16+
th:text="${bc.name}">
17+
</a>
18+
</li>
19+
</ol>
20+
</nav>
21+
</div>
22+
</section>
23+
24+
</html>

src/main/resources/templates/layout/projects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:sd="http://www.thymeleaf.org/spring-data">
66

77
<section th:fragment="navigation-projects(rootProjects,thisProject)">
8-
<div class="border-top" id="projectNavigationWell" sec:authorize="isAuthenticated()">
8+
<div class="border-top shadow-lg" id="projectNavigationWell" sec:authorize="isAuthenticated()">
99
<div class="row col" id="tw-project-submenu-col">
1010
<nav>
1111
<ul id="rootProject">

src/main/resources/templates/layout/tasks.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<div th:fragment="tw-tasks-page-table(taskPage,myTaskState,myUrlPath)">
2424
<div class="row">
25-
<table class="table table-striped table-hover">
25+
<table class="table table-striped table-hover shadow-lg">
2626
<thead>
2727
<tr>
2828
<th class="task_col task_col_info_icons" th:utext="#{tasks.col.info.icons}">&nbsp;</th>
@@ -165,6 +165,7 @@
165165
</div>
166166

167167
<div th:fragment="tw-tasks-modal(task,myUrlPath)">
168+
<span class="d-grid gap-2">
168169
<button type="button" data-bs-toggle="modal"
169170
class="btn btn-primary btn-sm task_col_content task_col_content_task_details twtooltip"
170171
th:attr="data-bs-target='#taskModalScrollable_'+${task.id}"
@@ -272,6 +273,7 @@ <h5 class="modal-title" id="taskModalScrollableTitle">
272273
</div>
273274
</div>
274275
</div>
276+
</span>
275277
</div>
276278

277279
<div th:fragment="tw-tasks-pagination(page)">

0 commit comments

Comments
 (0)