eye candy
This commit is contained in:
@ -7,7 +7,7 @@ plugins {
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
|
||||
group = 'de.jottyfan'
|
||||
version = '1.3.6'
|
||||
version = '1.3.7'
|
||||
|
||||
description = """timetrack"""
|
||||
|
||||
|
@ -368,4 +368,26 @@ body {
|
||||
min-height: calc(90vh - 100px);
|
||||
max-height: calc(90vh - 100px);
|
||||
margin: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-list {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.btn-list:hover {
|
||||
border: 1px solid rgb(119, 118, 123);
|
||||
color: white;
|
||||
background-image: linear-gradient(to right bottom, #99c1f1, #1a5f64);
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] .btn-list:hover {
|
||||
border: 1px solid rgb(246, 245, 244);
|
||||
color: rgb(246, 245, 244);
|
||||
background-image: linear-gradient(to right bottom, #99c1f1, #1a5f64);
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
<td style="padding-left: 8px"><a class="nav-link btn btn-bordered btn-dangerhover" style="width: 44px" th:href="@{/done/list}"><i class="fas fa-sync"></i></a></td>
|
||||
<td style="padding-left: 8px"><a class="nav-link btn-list" th:href="@{/done/list}"><i class="fas fa-sync"></i></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
@ -70,7 +70,7 @@
|
||||
<tbody>
|
||||
<tr th:each="done : ${doneList}">
|
||||
<td><a class="hoverlink" th:href="@{/done/edit/{id}(id=${done.pk})}"><span th:text="${done.timeNote}"></span></a>
|
||||
<a th:if="${done.timeUntil==null}" class="btn btn-outline-secondary" th:href="@{/done/end/{id}(id=${done.pk})}"><i class="fa fa-clock"></i></a>
|
||||
<a th:if="${done.timeUntil == null}" style="margin-left: 12px" class="btn-list" th:href="@{/done/end/{id}(id=${done.pk})}"><i class="fa fa-clock"></i></a>
|
||||
</td>
|
||||
<td><a class="hoverlink" th:href="@{/done/edit/{id}(id=${done.pk})}"><span th:text="${done.timeDiff}"></span></a></td>
|
||||
<td><a class="hoverlink" th:href="@{/done/edit/{id}(id=${done.pk})}"><span class="boldtext"
|
||||
@ -82,8 +82,8 @@
|
||||
<td><span th:text="${done.billing.shortcut}" th:class="'billing ' + ${done.billing.csskey}"
|
||||
th:if="${done.billing != null}"></span></td>
|
||||
<td>
|
||||
<a class="" th:href="@{/done/copy/{id}(id=${done.pk})}"><i class="fa fa-copy"></i></a>
|
||||
<a style="margin-left: 5px;" th:href="@{/done/edit/{id}(id=${done.pk})}" th:title="${done.pk}"><i class="fa fa-edit"></i></a></td>
|
||||
<a class="btn-list" th:href="@{/done/copy/{id}(id=${done.pk})}"><i class="fa fa-copy"></i></a>
|
||||
<a class="btn-list" th:href="@{/done/edit/{id}(id=${done.pk})}" th:title="${done.pk}"><i class="fa fa-edit"></i></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
|
Reference in New Issue
Block a user