Skip to content

Commit

Permalink
add title for all icons
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbroll authored and C-Otto committed Jun 6, 2022
1 parent 50ae5e4 commit 56e82e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
<tbody>
<tr th:each="channel : ${channels}">

<td th:if="${channel.privateChannel}">
<td th:if="${channel.privateChannel}" title="private channel">
<div th:replace="~{fragments/channel-collections :: icon-private}"/>
</td>
<td th:unless="${channel.privateChannel}">
<td th:unless="${channel.privateChannel}" title="public channel">
<div th:replace="~{fragments/channel-collections :: icon-public}"/>
</td>

Expand Down
8 changes: 4 additions & 4 deletions ui/src/main/resources/templates/fragments/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<footer th:fragment="footer" class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<div th:if="${status.connected}">
<a href="/" class="mb-3 me-2 mb-md-0 text-muted text-decoration-none lh-1">
<a href="/" class="mb-3 me-2 mb-md-0 text-muted text-decoration-none lh-1" title="Dashboard">
<div th:replace="~{fragments/icons :: arrow-up}"/>
</a>
<span class="text-muted">Updated at &nbsp;</span>
Expand All @@ -17,17 +17,17 @@

<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3">
<a class="text-muted" href="https://github.com/C-Otto/lnd-manageJ/issues">
<a class="text-muted" href="https://github.com/C-Otto/lnd-manageJ/issues" title="File Issue">
<div th:replace="~{fragments/icons :: message}"/>
</a>
</li>
<li class="ms-3">
<a class="text-muted" href="https://twitter.com/c_otto83">
<a class="text-muted" href="https://twitter.com/c_otto83" title="Twitter">
<div th:replace="~{fragments/icons :: twitter}"/>
</a>
</li>
<li class="ms-3">
<a class="text-muted" href="https://github.com/C-Otto/lnd-manageJ">
<a class="text-muted" href="https://github.com/C-Otto/lnd-manageJ" title="Github">
<div th:replace="~{fragments/icons :: github}"/>
</a>
</li>
Expand Down

0 comments on commit 56e82e2

Please sign in to comment.