mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-22 01:38:12 +08:00
* Restyle UserInputLabel and refactor its usages to have all input its data sent from Rust * Replace the welcome screen quick buttons with ones sent by backend * Add the ShortcutLabel widget to the backend * Replace hints bar with a backend-controlled layout; show mouse icons in place of mouse labels
48 lines
1.2 KiB
Svelte
48 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import { type WidgetTable as WidgetTableFromJsMessages } from "@graphite/messages";
|
|
|
|
import WidgetSpan from "@graphite/components/widgets/WidgetSpan.svelte";
|
|
|
|
export let widgetData: WidgetTableFromJsMessages;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export let layoutTarget: any;
|
|
export let unstyled = false;
|
|
|
|
$: columns = widgetData.tableWidgets.length > 0 ? widgetData.tableWidgets[0].length : 0;
|
|
</script>
|
|
|
|
<table class:unstyled>
|
|
<tbody>
|
|
{#each widgetData.tableWidgets as row}
|
|
<tr>
|
|
{#each row as cell}
|
|
<td colspan={row.length < columns ? columns - row.length + 1 : undefined}>
|
|
<WidgetSpan widgetData={{ rowWidgets: [cell] }} {layoutTarget} narrow={true} />
|
|
</td>
|
|
{/each}
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
|
|
<style lang="scss">
|
|
table:not(.unstyled) {
|
|
background: var(--color-3-darkgray);
|
|
border: none;
|
|
border-spacing: 4px;
|
|
border-radius: 2px;
|
|
|
|
td {
|
|
background: var(--color-2-mildblack);
|
|
vertical-align: top;
|
|
border: none;
|
|
border-radius: 2px;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
tr:first-child td {
|
|
background-image: var(--inheritance-dots-background-4-dimgray);
|
|
}
|
|
}
|
|
</style>
|