1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linuxdash_ynh.git synced 2024-09-03 19:36:07 +02:00
linuxdash_ynh/sources/templates/app/theme-switcher.html

12 lines
313 B
HTML
Raw Normal View History

<div id="theme-switcher" class="{{ (themeSwitcherOpen) ? 'open': '' }}">
<div class="settings-icon" ng-click="toggleThemeSwitcher()">&#x2699;</div>
<div
class="option {{ (theme.selected) ? 'selected': '' }}"
ng-repeat="theme in themes"
ng-click="switchTheme(theme)">
{{ theme.name }}
</div>
</div>