|
13 | 13 | <div id="tw-content-title">
|
14 | 14 | <h2>
|
15 | 15 | <i class="fas fa-folder-open"></i>
|
16 |
| - <span th:text="#{project.show.h1}">Project</span> |
| 16 | + <span th:text="#{project.show.h1}"class="me-3">Project</span> |
17 | 17 | <span th:if="${thisProject.id gt 0}">
|
18 | 18 | <a class="btn btn-block btn-outline-dark" data-bs-toggle="collapse"
|
19 | 19 | href="#collapseDescription" role="button" aria-expanded="false" aria-controls="collapseExample">
|
|
24 | 24 | <div class="collapse" id="collapseDescription">
|
25 | 25 | <div class="card card-body" th:text="${thisProject.description}"></div>
|
26 | 26 | </div>
|
27 |
| - <div id="tw-content-title-actionbuttons"> |
| 27 | + <div id="tw-content-title-actionbuttons" class="py-3"> |
28 | 28 | <div class="row">
|
29 |
| - <div class="col-md-3 mb-3"> |
| 29 | + <div class="col-md-3"> |
30 | 30 | <a class="btn btn-block btn-primary" role="button" href="#"
|
31 | 31 | th:href="@{/project/{thisProjectId}/task/add(thisProjectId=${thisProject.id})}">
|
32 | 32 | <i class="fas fa-plus-square"></i>
|
33 | 33 | <span th:text="#{project.show.addTask}">Add a Task</span>
|
34 | 34 | </a>
|
35 | 35 | </div>
|
36 |
| - <div class="col-md-3 mb-3"> |
| 36 | + <div class="col-md-3"> |
37 | 37 | <a class="btn btn-block btn-secondary" role="button" href="#"
|
38 | 38 | th:href="@{/project/{thisProjectId}/project/add(thisProjectId=${thisProject.id})}">
|
39 | 39 | <i class="fas fa-plus-square"></i>
|
40 | 40 | <span th:text="#{layout.page.addProject}">Add a Project</span>
|
41 | 41 | </a>
|
42 | 42 | </div>
|
43 |
| - <div class="col-md-3 mb-3"> |
44 |
| - <a class="btn btn-block btn-dark" role="button" href="#" |
| 43 | + <div class="col-md-3"> |
| 44 | + <a class="btn btn-block btn-outline-dark" role="button" href="#" |
45 | 45 | th:href="@{/project/{thisProjectId}/edit(thisProjectId=${thisProject.id})}">
|
46 | 46 | <i class="fas fa-edit"></i>
|
47 | 47 | <span th:text="#{project.show.edit}">Edit Project</span>
|
48 | 48 | </a>
|
49 | 49 | </div>
|
50 |
| - <div class="col-md-3 mb-3"> |
51 |
| - <a class="btn btn-block btn-dark" role="button" href="#" |
| 50 | + <div class="col-md-3"> |
| 51 | + <a class="btn btn-block btn-outline-dark" role="button" href="#" |
52 | 52 | th:href="@{/project/{thisProjectId}/delete(thisProjectId=${thisProject.id})}">
|
53 | 53 | <i class="fas fa-trash-alt"></i>
|
54 | 54 | <span th:text="#{project.show.delete}">Delete Project</span>
|
|
0 commit comments