Skip to content

Commit 33811b5

Browse files
committed
work
1 parent b36cf79 commit 33811b5

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

src/main/resources/static/css/main.css

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,19 @@ tt, th, code, kbd, samp, pre {
2626
}
2727

2828
div#tw-content-title-actionbuttons {
29-
margin-top: 1rem;
29+
/* margin-top: 1rem; */
3030
}
3131

3232
div#collapseDescription {
3333
margin-top: 1.5rem;
3434
}
3535

3636
@media (min-width: 576px) {
37-
.jumbotron {
37+
/*
38+
.jumbotron {
3839
padding: 2rem 1rem !important;
3940
}
41+
*/
4042
}
4143

4244
.footer {
@@ -48,8 +50,10 @@ div#collapseDescription {
4850
}
4951

5052
#taskStateNavigationContainer {
53+
/*
5154
padding-top: 1rem;
5255
padding-bottom: 1rem;
56+
*/
5357
}
5458

5559
.navbar-text-footer {
@@ -61,35 +65,43 @@ div#collapseDescription {
6165
}
6266

6367
.nav-list {
64-
padding-left: 10px;
68+
/* padding-left: 10px; */
6569
}
6670

6771
#rootCategory {
6872
padding-left: 0px !important;
6973
}
7074

7175
#tw-main-section {
76+
/*
7277
padding-bottom: 1rem !important;
7378
margin-bottom: 1rem !important;
79+
*/
7480
}
7581

7682
#user-login-form {
83+
/*
7784
margin-top: 1rem;
7885
margin-bottom: 1rem;
86+
*/
7987
}
8088

8189
#user-login-form-more-information {
8290

8391
}
8492

8593
#newUser2UserMessageForm {
86-
margin-bottom: 1rem;
94+
margin-bottom: 1rem;
8795
}
8896

8997
#tw-project-submenu-col {
90-
padding-top: 0.75rem;
98+
/*
99+
padding-top: 0.75rem;
100+
*/
91101
}
92102

93103
#tw-project-submenu-root {
94-
margin-top: 0.75rem;
104+
/*
105+
margin-top: 0.75rem;
106+
*/
95107
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div th:fragment="breadcrumb(breadcrumb)">
88
<section class="container" sec:authorize="isAuthenticated()" th:if="${breadcrumb != null}">
99

10-
<nav aria-label="breadcrumb" class="m-1 mb-1 p-2">
10+
<nav aria-label="breadcrumb">
1111
<ol class="breadcrumb">
1212
<li th:each="bc,iterStat : ${breadcrumb.getBreadcrumb()}"
1313
th:class="${iterStat == breadcrumb.size()-1 ? 'breadcrumb-item active' : 'breadcrumb-item'}">

src/main/resources/templates/project/root/show.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,21 @@ <h1>
1515
<i class="fas fa-folder-open"></i>
1616
<span th:text="#{project.show.h1}" class="mx-1">Project</span>
1717
</h1>
18-
<div id="tw-content-title-actionbuttons" class="d-grid col-2 mx-auto d-md-block">
19-
<div class="col-md-3 mb-3">
18+
</div>
19+
<div id="tw-content-title-actionbuttons">
20+
<div class="row">
21+
<div class="col-md-3 mb-3">
2022
<a class="btn btn-block btn-primary" role="button" th:href="@{/project/root/task/add}">
2123
<i class="fas fa-plus-square"></i>
2224
<span th:text="#{project.show.addTask}">Add a Task</span>
2325
</a>
24-
</div>
25-
<div class="col-md-3 mb-3">
26+
</div>
27+
<div class="col-md-3 mb-3">
2628
<a class="btn btn-block btn-secondary" role="button" th:href="@{/project/root/project/add}">
2729
<i class="fas fa-plus-square"></i>
2830
<span th:text="#{layout.page.addProject}">Add a Project</span>
2931
</a>
30-
</div>
32+
</div>
3133
</div>
3234
</div>
3335
</div>

0 commit comments

Comments
 (0)