00254144b3
- Add has-tooltip class and data-tooltip to info button - Add has-tooltip class and data-tooltip to color theme switcher - Both buttons on LEFT side show tooltips on RIGHT - Mobile: tooltips appear on TOP (like macOS Dock) - Complete tooltip coverage for all action buttons
10 lines
463 B
HTML
10 lines
463 B
HTML
{{define "info-button"}}
|
|
<!-- Info Button (Bottom Left) -->
|
|
<button id="info-button" class="info-button no-print has-tooltip"
|
|
aria-label="{{if eq .Lang "es"}}Información{{else}}Information{{end}}"
|
|
data-tooltip="{{if eq .Lang "es"}}Información{{else}}Information{{end}}"
|
|
onclick="document.getElementById('info-modal').showModal()">
|
|
<iconify-icon icon="mdi:information-outline" width="24" height="24"></iconify-icon>
|
|
</button>
|
|
{{end}}
|