mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Add sveltekit-svg plugin to fix svg icon styling Closes #3127. * Unify svg icon usage Moves all icons into ts/lib/components/icons.ts and uses a single component to render them both with eslint and svelte-kit. * Fix spinning revert icon not being centered * Use svg earth icon for global label * Add tooltip to global label icon * Remove eslint-plugin-simple-import-sort Imports are already sorted by dprint with conflicting rules.
55 lines
1.6 KiB
Svelte
55 lines
1.6 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 * as tr from "@generated/ftl";
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
import ButtonGroup from "$lib/components/ButtonGroup.svelte";
|
|
import ButtonToolbar from "$lib/components/ButtonToolbar.svelte";
|
|
import Icon from "$lib/components/Icon.svelte";
|
|
import IconButton from "$lib/components/IconButton.svelte";
|
|
import { blockIcon, deleteIcon, inlineIcon } from "$lib/components/icons";
|
|
|
|
import ClozeButtons from "../ClozeButtons.svelte";
|
|
|
|
export let isBlock: boolean;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
</script>
|
|
|
|
<ButtonToolbar size={1.6} wrap={false}>
|
|
<ButtonGroup>
|
|
<IconButton
|
|
tooltip={tr.editingMathjaxInline()}
|
|
active={!isBlock}
|
|
on:click={() => dispatch("setinline")}
|
|
--border-left-radius="5px"
|
|
>
|
|
<Icon icon={inlineIcon} />
|
|
</IconButton>
|
|
|
|
<IconButton
|
|
tooltip={tr.editingMathjaxBlock()}
|
|
active={isBlock}
|
|
on:click={() => dispatch("setblock")}
|
|
--border-right-radius="5px"
|
|
>
|
|
<Icon icon={blockIcon} />
|
|
</IconButton>
|
|
</ButtonGroup>
|
|
|
|
<ClozeButtons on:cloze alwaysEnabled={true} />
|
|
|
|
<ButtonGroup>
|
|
<IconButton
|
|
tooltip={tr.actionsDelete()}
|
|
on:click={() => dispatch("delete")}
|
|
--border-left-radius="5px"
|
|
--border-right-radius="5px"
|
|
>
|
|
<Icon icon={deleteIcon} />
|
|
</IconButton>
|
|
</ButtonGroup>
|
|
</ButtonToolbar>
|