File size: 980 Bytes
8d9d326 |
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 |
<script lang="ts">
export let on_click: (event: MouseEvent) => void;
</script>
<button
aria-label="Open cell menu"
class="cell-menu-button"
aria-haspopup="menu"
on:click={on_click}
on:touchstart={(event) => {
event.preventDefault();
const touch = event.touches[0];
const mouseEvent = new MouseEvent("click", {
clientX: touch.clientX,
clientY: touch.clientY,
bubbles: true,
cancelable: true,
view: window
});
on_click(mouseEvent);
}}
>
⋮
</button>
<style>
.cell-menu-button {
flex-shrink: 0;
display: none;
align-items: center;
justify-content: center;
background-color: var(--block-background-fill);
border: 1px solid var(--border-color-primary);
border-radius: var(--block-radius);
width: var(--size-5);
height: var(--size-5);
min-width: var(--size-5);
padding: 0;
margin-right: var(--spacing-sm);
z-index: 2;
position: absolute;
right: var(--size-1);
top: 50%;
transform: translateY(-50%);
}
</style>
|