f2173fddb0
* Allow theme change at runtime and add hook * Save or restore default palette on theme change * Update aqt widget styles on theme change * styling fixes - drop _light_palette, as default_palette serves the same purpose - save default platform theme, and restore it when switching away from nightmode - update macOS light/dark mode on theme switch - fix unreadable menus on Windows * update night-mode classes on theme change This is the easy part - CSS styling that uses standard_css or our css variables should update automatically. The main remaining issue is JS code that sets colors based on the theme at the time it's run - eg the graph code, and the editor. * switch night mode value on toggle * expose current theme via a store; switch graphs to use it https://github.com/ankitects/anki/issues/1471#issuecomment-972402492 * start using currentTheme in editor/components This fixes basic editing - there are still components that need updating. * add simple xcodeproj for code completion * add helper to get currently-active system theme on macOS * fix setCurrentTheme not being immediately available * live update tag color * style().name() doesn't work on Qt5 * automatic theme switching on Windows/Mac * currentTheme -> pageTheme * Replace `nightModeKey` with `pageTheme` Co-authored-by: Damien Elmes <gpg@ankiweb.net>
69 lines
1.9 KiB
Svelte
69 lines
1.9 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import { onMount, createEventDispatcher, getContext } from "svelte";
|
|
import { dropdownKey } from "./context-keys";
|
|
import type { DropdownProps } from "./dropdown";
|
|
import { pageTheme } from "../sveltelib/theme";
|
|
|
|
export let id: string | undefined = undefined;
|
|
let className: string = "";
|
|
export { className as class };
|
|
export let theme = "anki";
|
|
|
|
function extendClassName(className: string, theme: string): string {
|
|
return `btn ${theme !== "anki" ? `btn-${theme}` : ""}${className}`;
|
|
}
|
|
|
|
export let tooltip: string | undefined = undefined;
|
|
export let active = false;
|
|
export let disabled = false;
|
|
export let tabbable = false;
|
|
|
|
const dropdownProps = getContext<DropdownProps>(dropdownKey) ?? { dropdown: false };
|
|
|
|
let buttonRef: HTMLButtonElement;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
onMount(() => dispatch("mount", { button: buttonRef }));
|
|
</script>
|
|
|
|
<button
|
|
bind:this={buttonRef}
|
|
{id}
|
|
class="label-button {extendClassName(className, theme)}"
|
|
class:active
|
|
class:dropdown-toggle={dropdownProps.dropdown}
|
|
class:btn-day={theme === "anki" && !$pageTheme.isDark}
|
|
class:btn-night={theme === "anki" && $pageTheme.isDark}
|
|
title={tooltip}
|
|
{...dropdownProps}
|
|
{disabled}
|
|
tabindex={tabbable ? 0 : -1}
|
|
on:click
|
|
on:mousedown|preventDefault
|
|
>
|
|
<slot />
|
|
</button>
|
|
|
|
<style lang="scss">
|
|
@use "sass/button-mixins" as button;
|
|
|
|
button {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
padding: 0 calc(var(--buttons-size) / 3);
|
|
font-size: var(--base-font-size);
|
|
width: auto;
|
|
height: var(--buttons-size);
|
|
|
|
@include button.btn-border-radius;
|
|
}
|
|
|
|
@include button.btn-day;
|
|
@include button.btn-night;
|
|
</style>
|