Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tooltips to buttons #104

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions nullboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -1612,10 +1612,10 @@
<div class=menu>
<a href=# class=teaser>&equiv;</a>
<div class=bulk>
<a href=# class='del-board warn'><u></u> Board</a>
<a href=# class='undo-board'>Undo</a>
<a href=# class='redo-board'>Redo</a>
<a href=# class='add-list'>+ List</a>
<a href=# class='del-board warn' title="Delete board"><u></u> Board</a>
<a href=# class='undo-board' title="Undo">Undo</a>
<a href=# class='redo-board' title="Redo">Redo</a>
<a href=# class='add-list' title="Add list">+ List</a>
</div>
</div>
</div>
Expand All @@ -1631,11 +1631,11 @@
<div class=menu>
<a href=# class=teaser>&equiv;</a>
<div class=bulk>
<a href=# class='del-list warn'><u></u> List</a>
<a href=# class='mov-list-l full'>&lt; Move</a>
<a href=# class='mov-list-l half'>&lt; Mo</a><a href=# class='mov-list-r half'>ve &gt;</a>
<a href=# class='mov-list-r full'>Move &gt;</a>
<a href=# class='add-note'>+ Note</a>
<a href=# class='del-list warn' title="Delete List"><u></u> List</a>
<a href=# class='mov-list-l full' title="Move to the left">&lt; Move</a>
<a href=# class='mov-list-l half' title="Move to the left">&lt; Mo</a><a href=# class='mov-list-r half' title="Move to the right">ve &gt;</a>
<a href=# class='mov-list-r full' title="Move to the right">Move &gt;</a>
<a href=# class='add-note' title="Add note">+ Note</a>
</div>
</div>
</div>
Expand All @@ -1647,9 +1647,9 @@
<div class=ops>
<a href=# class=teaser></a>
<div class=bulk>
<a href=# class='del-note warn'>X</a>
<a href=# class='raw-note'>R</a>
<a href=# class='collapse'>_</a>
<a href=# class='del-note warn' title="Delete note">X</a>
<a href=# class='raw-note' title="Toggle style">R</a>
<a href=# class='collapse' title="Collapse">_</a>
</div>
</div>
<div class=text> </div>
Expand Down