anki/ts/editor/CollapseBadge.svelte
Matthias Metelka b12476de9a
Simplify NoteEditor by replacing Pane components with Collapsible (#2395)
* Remove Pane components and use Collapsible for TagEditor

* Update translations

* Give TagEditor border and focus outline

* Use ScrollArea from #2248 for fields

* Refactor ScrollArea

* Fix error caused by calling bridgeCommand when it's not available

* Make sure tag editor fills whole width of container

which is important for the CSV import page.

* Update NoteEditor.svelte

* Add back removed ftl strings

* Fix tests (dae)
2023-02-27 16:23:19 +10:00

36 lines
882 B
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 Badge from "../components/Badge.svelte";
import { chevronDown } from "./icons";
export let collapsed = false;
</script>
<div class="collapse-badge" class:collapsed>
<Badge iconSize={80}>{@html chevronDown}</Badge>
</div>
<style lang="scss">
.collapse-badge {
display: inline-block;
opacity: 0.4;
transition: opacity var(--transition) ease-in-out,
transform var(--transition) ease-in;
:global(.collapse-label:hover) & {
opacity: 1;
}
&.collapsed {
transform: rotate(-90deg);
}
}
:global([dir="rtl"]) {
.collapse-badge.collapsed {
transform: rotate(90deg);
}
}
</style>