toolbar => toolstrip

This commit is contained in:
Jan Prochazka
2022-02-12 17:07:06 +01:00
parent b459ee250c
commit 056fb6ef6a
6 changed files with 40 additions and 16 deletions

View File

@@ -0,0 +1,70 @@
<script lang="ts">
import { createEventDispatcher } from 'svelte';
import FontIcon from '../icons/FontIcon.svelte';
export let disabled = false;
export let icon = null;
export let title = null;
export let externalImage = null;
const dispatch = createEventDispatcher();
function handleClick(e) {
if (disabled) return;
dispatch('click');
}
</script>
<div class="button" class:disabled {title}>
<div class="inner" class:disabled on:click={handleClick}>
{#if externalImage}
<img src={externalImage} />
{:else}
<span class="icon" class:disabled><FontIcon {icon} /></span>
<slot />
{/if}
</div>
</div>
<style>
.button {
/* padding: 5px 15px; */
padding-left: 5px;
padding-right: 5px;
color: var(--theme-font-1);
border: 0;
align-self: stretch;
display: flex;
user-select: none;
}
.button.disabled {
color: var(--theme-font-3);
}
.inner:hover:not(.disabled) {
background: var(--theme-bg-3);
}
.inner:active:hover:not(.disabled) {
background: var(--theme-bg-4);
}
.icon {
margin-right: 5px;
color: var(--theme-font-link);
}
.icon.disabled {
color: var(--theme-font-3);
}
.inner {
/* position: relative;
top: 2px; */
white-space: nowrap;
align-self: center;
background: var(--theme-bg-2);
padding: 3px 8px;
border-radius: 4px;
cursor: pointer;
}
img {
width: 20px;
height: 20px;
}
</style>