Files
Odoo-Modules/fusion_theme_switcher/static/src/xml/theme_toggle_systray.xml
gsinghpal 6b7b44264a changes
2026-05-10 10:25:12 -04:00

22 lines
688 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<t t-name="fusion_theme_switcher.ThemeToggleSystray">
<button type="button"
t-att-title="title"
t-att-aria-label="title"
t-att-disabled="state.loading"
t-att-class="{
'o_fts_theme_toggle': true,
'o_fts_theme_toggle_dark': isDark,
'o_fts_theme_toggle_loading': state.loading,
}"
t-on-click="onToggleTheme">
<i t-att-class="iconClass"/>
<span class="visually-hidden" t-esc="title"/>
</button>
</t>
</templates>