mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 06:46:00 +00:00
71 lines
1.4 KiB
Svelte
71 lines
1.4 KiB
Svelte
<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>
|