mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Store selector * Footer * Notifications * Checkout Appearance * Users list * Forms * Emails * Pay Button * Edit Dictionary * Remove newlines, fix typos * Forms * Pull payments and payouts * Various pages * Use local docs link * Fix * Even more translations * Fixes #6325 * Account pages * Notifications * Placeholders * Various pages and components * Add more
10 lines
632 B
Text
10 lines
632 B
Text
@model BTCPayServer.Components.ThemeSwitch.ThemeSwitchViewModel
|
|
|
|
<div class="btcpay-theme-switch @Model.CssClass">
|
|
<span class="btcpay-theme-switch-label" text-translate="true">Theme</span>
|
|
<div class="btcpay-theme-switch-themes">
|
|
<button type="button" title="@StringLocalizer["System"]" data-theme="system"><vc:icon symbol="themes-system"/></button>
|
|
<button type="button" title="@StringLocalizer["Light"]" data-theme="light"><vc:icon symbol="themes-light"/></button>
|
|
<button type="button" title="@StringLocalizer["Dark"]" data-theme="dark"><vc:icon symbol="themes-dark"/></button>
|
|
</div>
|
|
</div>
|