File size: 2,973 Bytes
1ad9a0b |
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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
<script lang="ts">
import { type ComponentType } from "svelte";
import type { ColorInput } from "tinycolor2";
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: string | ColorInput = "var(--block-label-text-color)";
export let transparent = false;
export let background = "var(--background-fill-primary)";
export let offset = 0;
export let label_position: "left" | "right" = "left";
export let roundedness: "quite" | "very" = "quite";
$: _color = highlight ? "var(--color-accent)" : color.toString();
</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"}
style:margin-left={offset + "px"}
class="{roundedness}-round"
>
{#if show_label && label_position === "left"}
<span style="margin-left: 4px;">{label}</span>
{/if}
<div
class:small={size === "small"}
class:large={size === "large"}
class:medium={size === "medium"}
>
<Icon />
</div>
{#if show_label && label_position === "right"}
<span style="margin-right: 4px;">{label}</span>
{/if}
</button>
<style>
button {
display: flex;
justify-content: center;
align-items: center;
gap: 1px;
z-index: var(--layer-2);
/* background: var(--background-fill-primary); */
/* border-radius: var(--radius-sm); */
color: var(--block-label-text-color);
border: 1px solid transparent;
}
.quite-round {
border-radius: var(--radius-sm);
}
.very-round {
border-radius: var(--radius-md);
}
button[disabled] {
opacity: 0.5;
box-shadow: none;
}
button[disabled]:hover {
cursor: not-allowed;
/* border: 1px solid var(--button-secondary-border-color); */
/* padding: 2px; */
}
.padded {
padding: 2px;
background: var(--bg-color);
box-shadow: var(--shadow-drop);
border: 1px solid var(--button-secondary-border-color);
}
button:hover,
button.highlight {
cursor: pointer;
color: var(--color-accent);
}
.padded:hover {
border: 2px solid var(--button-secondary-border-color-hover);
padding: 1px;
color: var(--block-label-text-color);
}
span {
padding: 0px 1px;
font-size: 10px;
}
div {
padding: 2px;
display: flex;
align-items: flex-end;
}
.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>
|