anki/ts/components/DropdownItem.svelte

74 lines
1.6 KiB
Svelte
Raw Normal View History

2021-04-15 15:59:52 +02:00
<!--
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 { nightModeKey } from "./context-keys";
export let id: string | undefined = undefined;
2021-04-28 22:15:24 +02:00
let className = "";
export { className as class };
export let tooltip: string | undefined = undefined;
export let tabbable: boolean = false;
let buttonRef: HTMLButtonElement;
const nightMode = getContext(nightModeKey);
const dispatch = createEventDispatcher();
onMount(() => dispatch("mount", { button: buttonRef }));
</script>
<button
{id}
2021-06-25 17:34:04 +02:00
tabindex={tabbable ? 0 : -1}
bind:this={buttonRef}
class="dropdown-item btn {className}"
class:btn-day={!nightMode}
class:btn-night={nightMode}
title={tooltip}
on:click
2021-06-26 03:20:27 +02:00
on:mouseenter
on:focus
on:keydown
on:mousedown|preventDefault
>
<slot />
</button>
<style lang="scss">
@use "sass/button-mixins" as button;
button {
display: flex;
justify-content: space-between;
2021-04-28 22:15:24 +02:00
font-size: calc(var(--base-font-size) * 0.8);
background: none;
box-shadow: none !important;
border: none;
&:active,
&.active {
background-color: button.$focus-color;
color: white;
}
}
.btn-day {
color: black;
}
.btn-night {
color: white;
&:hover,
&:focus {
@include button.btn-night-base;
}
}
</style>