2025-11-16 12:48:12 +00:00
|
|
|
{{define "zoom-toggle-button"}}
|
|
|
|
|
<!-- Zoom Toggle Button (Fixed Right, above shortcuts button) -->
|
|
|
|
|
<button
|
|
|
|
|
id="zoom-toggle-button"
|
|
|
|
|
class="fixed-btn zoom-toggle-btn no-print"
|
|
|
|
|
aria-label="{{if eq .Lang "es"}}Alternar control de zoom{{else}}Toggle zoom control{{end}}"
|
2025-11-16 13:29:40 +00:00
|
|
|
title="{{if eq .Lang "es"}}Control de zoom{{else}}Zoom control{{end}}"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on mouseenter call highlightZoomControl(true)
|
|
|
|
|
on mouseleave call highlightZoomControl(false)">
|
2025-11-16 12:48:12 +00:00
|
|
|
<iconify-icon icon="mdi:magnify" width="28" height="28"></iconify-icon>
|
|
|
|
|
</button>
|
|
|
|
|
{{end}}
|