secondary edit button

This commit is contained in:
Jan Prochazka
2024-08-26 10:11:09 +02:00
parent 60bf682449
commit 3bfa7d54d0
2 changed files with 23 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
import FontIcon from '../icons/FontIcon.svelte';
export let icon = 'icon form';
export let secondary = false;
</script>
<div
@@ -9,6 +10,7 @@
on:mousedown|stopPropagation|preventDefault
on:mouseup|stopPropagation|preventDefault
class="showFormButtonMarker"
class:secondary
>
<FontIcon {icon} />
</div>
@@ -23,6 +25,10 @@
border: 1px solid var(--theme-bg-1);
}
.secondary {
margin-right: 20px;
}
div:hover {
color: var(--theme-font-hover);
border: var(--theme-border);