File size: 2,267 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
<script lang="ts">
import { type ComponentType } from "svelte";
export let Icon: ComponentType;
export let label = "";
export let show_label = false;
export let pending = false;
export let size: "small" | "large" | "medium" = "small";
export let padded = true;
export let highlight = false;
export let disabled = false;
export let hasPopup = false;
export let color = "var(--block-label-text-color)";
export let transparent = false;
export let background = "var(--block-background-fill)";
$: _color = highlight ? "var(--color-accent)" : color;
</script>
<button
{disabled}
on:click
aria-label={label}
aria-haspopup={hasPopup}
title={label}
class:pending
class:padded
class:highlight
class:transparent
style:color={!disabled && _color ? _color : "var(--block-label-text-color)"}
style:--bg-color={!disabled ? background : "auto"}
>
{#if show_label}<span>{label}</span>{/if}
<div
class:small={size === "small"}
class:large={size === "large"}
class:medium={size === "medium"}
>
<svelte:component this={Icon} />
</div>
</button>
<style>
button {
display: flex;
justify-content: center;
align-items: center;
gap: 1px;
z-index: var(--layer-2);
border-radius: var(--radius-xs);
color: var(--block-label-text-color);
border: 1px solid transparent;
padding: var(--spacing-xxs);
}
button:hover {
background-color: var(--background-fill-secondary);
}
button[disabled] {
opacity: 0.5;
box-shadow: none;
}
button[disabled]:hover {
cursor: not-allowed;
}
.padded {
background: var(--bg-color);
}
button:hover,
button.highlight {
cursor: pointer;
color: var(--color-accent);
}
.padded:hover {
color: var(--block-label-text-color);
}
span {
padding: 0px 1px;
font-size: 10px;
}
div {
display: flex;
align-items: center;
justify-content: center;
transition: filter 0.2s ease-in-out;
}
.small {
width: 14px;
height: 14px;
}
.medium {
width: 20px;
height: 20px;
}
.large {
width: 22px;
height: 22px;
}
.pending {
animation: flash 0.5s infinite;
}
@keyframes flash {
0% {
opacity: 0.5;
}
50% {
opacity: 1;
}
100% {
opacity: 0.5;
}
}
.transparent {
background: transparent;
border: none;
box-shadow: none;
}
</style>
|