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.
36 lines
958 B
Svelte
36 lines
958 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 "$lib/components/Badge.svelte";
|
|
import Icon from "$lib/components/Icon.svelte";
|
|
import { chevronDown } from "$lib/components/icons";
|
|
|
|
export let collapsed = false;
|
|
</script>
|
|
|
|
<div class="collapse-badge" class:collapsed>
|
|
<Badge iconSize={80}><Icon icon={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>
|