mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Use better cloze button icon
This commit is contained in:
parent
3581ee8f95
commit
982afca625
3 changed files with 4 additions and 4 deletions
|
@ -112,7 +112,7 @@ copy_mdi_icons(
|
||||||
"format-superscript.svg",
|
"format-superscript.svg",
|
||||||
"format-subscript.svg",
|
"format-subscript.svg",
|
||||||
"function-variant.svg",
|
"function-variant.svg",
|
||||||
"code-brackets.svg",
|
"contain.svg",
|
||||||
"xml.svg",
|
"xml.svg",
|
||||||
|
|
||||||
"format-color-text.svg",
|
"format-color-text.svg",
|
||||||
|
|
|
@ -11,7 +11,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
import WithShortcut from "components/WithShortcut.svelte";
|
import WithShortcut from "components/WithShortcut.svelte";
|
||||||
import WithContext from "components/WithContext.svelte";
|
import WithContext from "components/WithContext.svelte";
|
||||||
|
|
||||||
import { bracketsIcon } from "./icons";
|
import { ellipseIcon } from "./icons";
|
||||||
import { forEditorField } from ".";
|
import { forEditorField } from ".";
|
||||||
import { wrapCurrent } from "./wrap";
|
import { wrapCurrent } from "./wrap";
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
on:click={onCloze}
|
on:click={onCloze}
|
||||||
on:mount={createShortcut}
|
on:mount={createShortcut}
|
||||||
>
|
>
|
||||||
{@html bracketsIcon}
|
{@html ellipseIcon}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</WithContext>
|
</WithContext>
|
||||||
</WithContext>
|
</WithContext>
|
||||||
|
|
|
@ -27,7 +27,7 @@ export { default as colorHelperIcon } from "./color-helper.svg";
|
||||||
|
|
||||||
export { default as paperclipIcon } from "./paperclip.svg";
|
export { default as paperclipIcon } from "./paperclip.svg";
|
||||||
export { default as micIcon } from "./mic.svg";
|
export { default as micIcon } from "./mic.svg";
|
||||||
export { default as bracketsIcon } from "./code-brackets.svg";
|
export { default as ellipseIcon } from "./contain.svg";
|
||||||
export { default as functionIcon } from "./function-variant.svg";
|
export { default as functionIcon } from "./function-variant.svg";
|
||||||
export { default as xmlIcon } from "./xml.svg";
|
export { default as xmlIcon } from "./xml.svg";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue