anki/ts/components/DropdownItem.svelte

73 lines
1.5 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="typescript">
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;
let buttonRef: HTMLButtonElement;
const nightMode = getContext(nightModeKey);
const dispatch = createEventDispatcher();
onMount(() => dispatch("mount", { button: buttonRef }));
</script>
<button
{id}
bind:this={buttonRef}
class={`btn dropdown-item ${className}`}
class:btn-day={!nightMode}
class:btn-night={nightMode}
title={tooltip}
on:click
on:mousedown|preventDefault
>
<slot />
</button>
<style lang="scss">
2021-08-17 22:07:28 +02:00
@use 'button-mixins' as button;
button {
display: flex;
justify-content: space-between;
2021-04-28 22:15:24 +02:00
font-size: calc(var(--buttons-size) / 2.3);
background: none;
box-shadow: none;
border: none;
}
.btn-day {
color: black;
&:active {
background-color: button.$focus-color;
color: white;
}
}
.btn-night {
color: white;
&:hover,
&:focus {
@include button.btn-night-base;
}
&:active {
background-color: button.$focus-color;
color: white;
}
}
</style>