Add Button Titles to File Tools Buttons (#100)
Added Titles to File Tools Buttons so that they show their title on mouseover.
This commit is contained in:
parent
4a16b95d25
commit
d9519ae61f
14
index.html
14
index.html
|
@ -499,13 +499,13 @@ textarea {
|
|||
|
||||
<div id="file-tools">
|
||||
<div id="drive-save-state">Unsaved</div>
|
||||
<button id="drive-button" class="tool drive-image"></button>
|
||||
<button id="export-button" class="tool export-image"></button>
|
||||
<button id="import-button" class="tool import-image"></button>
|
||||
<button id="clear-button" class="tool clear-image"></button>
|
||||
<button id="undo-button" class="tool undo-image"></button>
|
||||
<button id="redo-button" class="tool redo-image"></button>
|
||||
<button id="options-button" class="tool info-image"></button>
|
||||
<button id="drive-button" class="tool drive-image" title="Google Drive Saving"></button>
|
||||
<button id="export-button" class="tool export-image" title="Export"></button>
|
||||
<button id="import-button" class="tool import-image" title="Import"></button>
|
||||
<button id="clear-button" class="tool clear-image" title="Clear"></button>
|
||||
<button id="undo-button" class="tool undo-image" title="Undo"></button>
|
||||
<button id="redo-button" class="tool redo-image" title="Redo"></button>
|
||||
<button id="options-button" class="tool info-image" title="Info"></button>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue