2025-11-16 12:48:12 +00:00
|
|
|
{{define "zoom-toggle-button"}}
|
2025-11-20 18:31:31 +00:00
|
|
|
<!-- Zoom Toggle Button (Fixed Left, above shortcuts button) -->
|
2025-11-16 12:48:12 +00:00
|
|
|
<button
|
|
|
|
|
id="zoom-toggle-button"
|
2025-11-20 18:31:31 +00:00
|
|
|
class="fixed-btn zoom-toggle-btn no-print has-tooltip"
|
2025-11-30 10:13:37 +00:00
|
|
|
aria-label="{{.UI.Widgets.ZoomToggle.AriaLabel}}"
|
|
|
|
|
data-tooltip="{{.UI.Widgets.ZoomToggle.Tooltip}}"
|
2025-11-30 06:03:45 +00:00
|
|
|
_="on click call toggleZoomControl()
|
|
|
|
|
on mouseenter call highlightZoomControl(true)
|
2025-11-16 14:03:22 +00:00
|
|
|
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}}
|