Skip to content

Commit

Permalink
Adding html titles (tooltips) to buttons for mouse users (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryPorotov authored Nov 1, 2023
1 parent 244b3a5 commit 3f70385
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,20 @@ <h1 class="warning">Network is down</h1>
</div>
</div>
<nav id="navbar" class="bar">
<button type="button" id="map-button" class="off"><i class="f7-icons">map</i></button>
<button type="button" id="log-button"><i class="f7-icons">greaterthan</i></button>
<button type="button" id="trash-button" class="pane-buttons off"><i class="f7-icons">rectangle_fill_badge_xmark</i></button>
<button type="button" id="divide-h" class="pane-buttons off"><i class="f7-icons">divide</i></button>
<button type="button" id="divide-v" class="pane-buttons off">
<button type="button" id="map-button" class="off" title="Map"><i class="f7-icons">map</i></button>
<button type="button" id="log-button" title="Log"><i class="f7-icons">greaterthan</i></button>
<button type="button" id="trash-button" class="pane-buttons off" title="Close pane">
<i class="f7-icons">rectangle_fill_badge_xmark</i></button>
<button type="button" id="divide-h" class="pane-buttons off" title="Split horizontally">
<i class="f7-icons">divide</i></button>
<button type="button" id="divide-v" class="pane-buttons off" title="Split vertically">
<i class="f7-icons" style="display: inline-block; transform: rotate(90deg);">divide</i></button>
<button type="button" id="search-button" class="pane-buttons off"><i class="f7-icons">doc_text_search</i></button>
<button type="button" id="video-button" class="pane-buttons off"><i class="f7-icons">videocam</i></button>
<button type="button" id="help-button"><i class="f7-icons">question</i></button>
<button type="button" id="dotfile-button"><i class="f7-icons">gear</i></button>
<button type="button" id="search-button" class="pane-buttons off" title="Search">
<i class="f7-icons">doc_text_search</i></button>
<button type="button" id="video-button" class="pane-buttons off" title="Video">
<i class="f7-icons">videocam</i></button>
<button type="button" id="help-button"><i class="f7-icons" title="Help">question</i></button>
<button type="button" id="dotfile-button"><i class="f7-icons" title="Dotfile config">gear</i></button>
</nav>

<template id="lose-state-template">
Expand Down Expand Up @@ -266,11 +270,11 @@ <h1><span class="name"></span> Error</h1>
</div>
</template>
<nav class="tabbar">
<button type="button" class="add-tab"><i class="f7-icons">
<button type="button" class="add-tab" title="Add pane"><i class="f7-icons">
plus</i></button>
<nav class="tabbar-names">
</nav>
<button type="button" class="reset"><i class="f7-icons">
<button type="button" class="reset" title="Reset connection"><i class="f7-icons">
arrow_2_circlepath</i></button>
</nav>
</template>
Expand Down

0 comments on commit 3f70385

Please sign in to comment.