Ports every remaining view (Keybinds, the last one — dual Flat/MultiLayout schema detection, per-action dedicated fields with a raw-JSON fallback for anything not modeled) and removes the now-fully-dead GTK4 crate (root Cargo.toml + src/), leaving src-tauri/ as the single Rust binary crate. Also folds in the UX pass done alongside the migration: responsive multi-column layout instead of a single centered column, chip/dropdown pickers replacing free-typed fields (Wi-Fi networks, Bar style, keyboard layout, tag lists), consistent pill-switch toggles and boxed-list card styling across every page, and a sidebar scroll-chaining fix.
653 lines
20 KiB
Svelte
653 lines
20 KiB
Svelte
<script lang="ts">
|
|
import { onMount } from "svelte";
|
|
import { invoke } from "@tauri-apps/api/core";
|
|
import ViewScaffold from "$lib/components/ViewScaffold.svelte";
|
|
import Group from "$lib/components/Group.svelte";
|
|
import Hint from "$lib/components/Hint.svelte";
|
|
import TextField from "$lib/components/TextField.svelte";
|
|
import SelectField from "$lib/components/SelectField.svelte";
|
|
import SaveButton from "$lib/components/SaveButton.svelte";
|
|
import Switch from "$lib/components/Switch.svelte";
|
|
|
|
// Mirrors src-tauri/src/commands/keybinds.rs's `Bind` — `action`/`key`/
|
|
// `mods` are the only fields every bind has; everything else (`command`,
|
|
// `direction`, `workspace`, `options`, breadhelp's `label`/`category`/
|
|
// `demo_cmd`, ...) round-trips through serde's `#[serde(flatten)]` as
|
|
// arbitrary sibling keys on the same JSON object.
|
|
interface Bind {
|
|
action: string;
|
|
key?: string;
|
|
mods?: string[];
|
|
[extra: string]: unknown;
|
|
}
|
|
interface BindsFile {
|
|
active_layout: string;
|
|
default_mods: string[];
|
|
globals: Bind[];
|
|
common: Bind[];
|
|
layouts: Record<string, Bind[]>;
|
|
bindings: Bind[];
|
|
}
|
|
type SchemaKind = "flat" | "multi_layout" | "unknown";
|
|
interface BindsPayload {
|
|
kind: SchemaKind;
|
|
file: BindsFile;
|
|
}
|
|
|
|
// Every action actually seen in real binds.json files (BOS's shipped
|
|
// flat schema and this app's own dev MultiLayout config) — an `action`
|
|
// dropdown beats free-typing a dispatcher name from memory. "Custom…"
|
|
// keeps anything not in this list reachable without blocking on it.
|
|
const KNOWN_ACTIONS = [
|
|
"exec",
|
|
"close",
|
|
"fullscreen",
|
|
"float",
|
|
"pseudo",
|
|
"resize",
|
|
"focus",
|
|
"focus_last",
|
|
"move",
|
|
"move_dir",
|
|
"resize_dir",
|
|
"drag",
|
|
"layout",
|
|
"exit",
|
|
] as const;
|
|
|
|
// The editable, per-row UI state a bind gets flattened into on load and
|
|
// reconstructed back into a `Bind` on save — same trade-off the GTK
|
|
// version made with individual `Entry` widgets per field.
|
|
interface EditRow {
|
|
action: string;
|
|
key: string;
|
|
mods: string;
|
|
// Whether `mods` has been explicitly set (present in the loaded JSON,
|
|
// or touched by the user since). `None`/absent means "fall back to
|
|
// default_mods"; `Some([])` — an explicitly *empty* mods list — means
|
|
// "use no modifiers at all, even though default_mods exists" (real
|
|
// BOS binds rely on this for e.g. bare media keys). Collapsing both
|
|
// cases to "omit when empty" would silently turn an explicit
|
|
// no-mods override back into "use the default" on next save.
|
|
modsTouched: boolean;
|
|
// The single source of truth for everything beyond action/key/mods
|
|
// (command, direction, workspace, x/y, layout, options, breadhelp's
|
|
// label/category/demo_cmd, ...). Dedicated per-action fields below
|
|
// read/write specific keys of this object directly, so any sibling
|
|
// key they don't know about (label/category/demo_cmd, or an action
|
|
// shape this editor has no dedicated fields for) survives untouched.
|
|
extraValue: Record<string, unknown>;
|
|
// Raw-JSON view of `extraValue`, kept in sync both directions —
|
|
// only actually shown when `advancedOpen` is true, or for an action
|
|
// not in `KNOWN_ACTIONS` (nothing dedicated to show instead).
|
|
extraText: string;
|
|
extraError: boolean;
|
|
advancedOpen: boolean;
|
|
}
|
|
|
|
function syncExtraText(row: EditRow) {
|
|
row.extraText = Object.keys(row.extraValue).length ? JSON.stringify(row.extraValue) : "";
|
|
row.extraError = false;
|
|
}
|
|
|
|
/** Mutates one top-level key of `row.extraValue` (deleting it when `value` is empty/undefined) and re-syncs the raw-JSON view. */
|
|
function setExtra(row: EditRow, key: string, value: unknown) {
|
|
if (value === undefined || value === "") {
|
|
delete row.extraValue[key];
|
|
} else {
|
|
row.extraValue[key] = value;
|
|
}
|
|
syncExtraText(row);
|
|
}
|
|
|
|
function getOption(row: EditRow, key: "locked" | "repeating"): boolean {
|
|
const options = row.extraValue.options as Record<string, unknown> | undefined;
|
|
return Boolean(options?.[key]);
|
|
}
|
|
function setOption(row: EditRow, key: "locked" | "repeating", value: boolean) {
|
|
const options = { ...((row.extraValue.options as Record<string, unknown>) ?? {}) };
|
|
if (value) options[key] = true;
|
|
else delete options[key];
|
|
if (Object.keys(options).length) row.extraValue.options = options;
|
|
else delete row.extraValue.options;
|
|
syncExtraText(row);
|
|
}
|
|
|
|
// Hyprland workspace refs mix bare integers ("1") and relative tokens
|
|
// ("e+1", "e-1") in the same field — keep whichever shape the user typed
|
|
// instead of forcing everything through one type.
|
|
function parseWorkspaceValue(s: string): string | number | undefined {
|
|
const trimmed = s.trim();
|
|
if (!trimmed) return undefined;
|
|
return /^-?\d+$/.test(trimmed) ? Number(trimmed) : trimmed;
|
|
}
|
|
|
|
function modsToText(mods?: string[]): string {
|
|
return (mods ?? []).join(", ");
|
|
}
|
|
function textToMods(s: string): string[] {
|
|
return s
|
|
.split(",")
|
|
.map((s) => s.trim())
|
|
.filter((s) => s.length > 0);
|
|
}
|
|
|
|
function bindToRow(b: Bind): EditRow {
|
|
const { action, key, mods, ...extra } = b;
|
|
const row: EditRow = {
|
|
action: action ?? "",
|
|
key: (key as string | undefined) ?? "",
|
|
mods: modsToText(mods),
|
|
modsTouched: mods !== undefined,
|
|
extraValue: extra,
|
|
extraText: "",
|
|
extraError: false,
|
|
advancedOpen: false,
|
|
};
|
|
syncExtraText(row);
|
|
return row;
|
|
}
|
|
|
|
function rowToBind(r: EditRow): Bind {
|
|
// `drag` binds are only meaningful as a mouse bind — there's no
|
|
// dedicated field for `options.mouse` (nothing to configure, it's
|
|
// always true), so pin it here rather than exposing a checkbox
|
|
// whose only correct state is "on".
|
|
const extra = r.action === "drag" ? { ...r.extraValue, options: { ...(r.extraValue.options as object), mouse: true } } : r.extraValue;
|
|
return {
|
|
action: r.action,
|
|
...(r.key.trim() ? { key: r.key.trim() } : {}),
|
|
...(r.modsTouched ? { mods: textToMods(r.mods) } : {}),
|
|
...extra,
|
|
};
|
|
}
|
|
|
|
function onExtraInput(row: EditRow, text: string) {
|
|
row.extraText = text;
|
|
const trimmed = text.trim();
|
|
if (!trimmed) {
|
|
row.extraValue = {};
|
|
row.extraError = false;
|
|
return;
|
|
}
|
|
try {
|
|
const parsed = JSON.parse(trimmed);
|
|
if (parsed && typeof parsed === "object" && !Array.isArray(parsed)) {
|
|
row.extraValue = parsed;
|
|
row.extraError = false;
|
|
} else {
|
|
row.extraError = true;
|
|
}
|
|
} catch {
|
|
row.extraError = true;
|
|
}
|
|
}
|
|
|
|
function emptyRow(): EditRow {
|
|
return {
|
|
action: "exec",
|
|
key: "",
|
|
mods: "",
|
|
modsTouched: false,
|
|
extraValue: {},
|
|
extraText: "",
|
|
extraError: false,
|
|
advancedOpen: false,
|
|
};
|
|
}
|
|
|
|
let loaded = $state(false);
|
|
let kind = $state<SchemaKind>("unknown");
|
|
let activeLayout = $state("");
|
|
let defaultMods = $state("");
|
|
let globalsRows = $state<EditRow[]>([]);
|
|
let commonRows = $state<EditRow[]>([]);
|
|
let bindingsRows = $state<EditRow[]>([]);
|
|
let layoutRows = $state<Record<string, EditRow[]>>({});
|
|
let layoutOrder = $state<string[]>([]);
|
|
let newLayoutName = $state("");
|
|
let loadError = $state("");
|
|
|
|
onMount(async () => {
|
|
try {
|
|
const p = await invoke<BindsPayload>("get_keybinds");
|
|
kind = p.kind;
|
|
// Rust's `#[serde(skip_serializing_if = ...)]` on every one of
|
|
// these fields means an empty one is OMITTED from the JSON
|
|
// entirely, not sent as `[]`/`{}`/`""` — every field here needs
|
|
// a `??` fallback, not just the ones that are "usually" empty.
|
|
activeLayout = p.file.active_layout ?? "";
|
|
defaultMods = modsToText(p.file.default_mods ?? []);
|
|
globalsRows = (p.file.globals ?? []).map(bindToRow);
|
|
commonRows = (p.file.common ?? []).map(bindToRow);
|
|
bindingsRows = (p.file.bindings ?? []).map(bindToRow);
|
|
const layouts: Record<string, EditRow[]> = {};
|
|
for (const [name, binds] of Object.entries(p.file.layouts ?? {})) layouts[name] = binds.map(bindToRow);
|
|
layoutRows = layouts;
|
|
layoutOrder = Object.keys(layouts);
|
|
loaded = true;
|
|
} catch (e) {
|
|
loadError = String(e);
|
|
}
|
|
});
|
|
|
|
function addLayout() {
|
|
const name = newLayoutName.trim();
|
|
if (!name || layoutOrder.includes(name)) return;
|
|
layoutRows[name] = [];
|
|
layoutOrder = [...layoutOrder, name];
|
|
newLayoutName = "";
|
|
}
|
|
function removeLayout(name: string) {
|
|
if (!confirm(`Remove layout "${name}"? Deletes every bind defined under this layout. This can't be undone here.`)) return;
|
|
delete layoutRows[name];
|
|
layoutOrder = layoutOrder.filter((n) => n !== name);
|
|
if (activeLayout === name) activeLayout = layoutOrder[0] ?? "";
|
|
}
|
|
|
|
// A row whose "extra" column currently holds text that doesn't parse as
|
|
// JSON keeps its *last successfully parsed* value in `extraValue` (see
|
|
// `onExtraInput`) rather than losing it on every keystroke while the
|
|
// user is mid-edit — but that means saving while such a row is still
|
|
// showing invalid/incomplete text would silently write that stale (or,
|
|
// for a brand new row, empty) value instead of what's actually on
|
|
// screen. Block save entirely until every row's extra JSON is valid, so
|
|
// an in-progress edit can never be the thing that quietly drops a
|
|
// bind's `command`/`direction`/`workspace`/etc.
|
|
function hasInvalidExtraJson(): boolean {
|
|
const all = [...globalsRows, ...commonRows, ...bindingsRows, ...Object.values(layoutRows).flat()];
|
|
return all.some((r) => r.extraError);
|
|
}
|
|
|
|
async function save() {
|
|
if (hasInvalidExtraJson()) {
|
|
throw new Error("Fix the invalid JSON in the highlighted field(s) before saving.");
|
|
}
|
|
const file: BindsFile = {
|
|
active_layout: activeLayout,
|
|
default_mods: textToMods(defaultMods),
|
|
globals: globalsRows.map(rowToBind),
|
|
common: commonRows.map(rowToBind),
|
|
layouts: Object.fromEntries(layoutOrder.map((name) => [name, (layoutRows[name] ?? []).map(rowToBind)])),
|
|
bindings: bindingsRows.map(rowToBind),
|
|
};
|
|
await invoke("save_keybinds", { file, kind });
|
|
}
|
|
</script>
|
|
|
|
{#snippet extraFields(row: EditRow)}
|
|
{#if row.action === "exec"}
|
|
<input
|
|
class="extra-wide"
|
|
type="text"
|
|
placeholder="Command to run"
|
|
value={(row.extraValue.command as string) ?? ""}
|
|
oninput={(e) => setExtra(row, "command", e.currentTarget.value)}
|
|
/>
|
|
<label class="mini-switch">
|
|
<Switch
|
|
ariaLabel="Repeat while held"
|
|
bind:value={() => getOption(row, "repeating"), (v) => setOption(row, "repeating", v)}
|
|
/>
|
|
Repeat while held
|
|
</label>
|
|
<label class="mini-switch">
|
|
<Switch
|
|
ariaLabel="Ignore keyboard lock"
|
|
bind:value={() => getOption(row, "locked"), (v) => setOption(row, "locked", v)}
|
|
/>
|
|
Works when locked
|
|
</label>
|
|
{:else if row.action === "focus" || row.action === "move"}
|
|
<input
|
|
class="extra-narrow"
|
|
type="text"
|
|
placeholder="Workspace (e.g. 3, e+1)"
|
|
value={String(row.extraValue.workspace ?? "")}
|
|
oninput={(e) => setExtra(row, "workspace", parseWorkspaceValue(e.currentTarget.value))}
|
|
/>
|
|
{:else if row.action === "move_dir"}
|
|
<select
|
|
class="extra-narrow"
|
|
value={(row.extraValue.direction as string) ?? ""}
|
|
onchange={(e) => setExtra(row, "direction", e.currentTarget.value || undefined)}
|
|
>
|
|
<option value="" disabled>Direction…</option>
|
|
<option value="left">Left</option>
|
|
<option value="right">Right</option>
|
|
<option value="up">Up</option>
|
|
<option value="down">Down</option>
|
|
</select>
|
|
{:else if row.action === "resize_dir"}
|
|
<input
|
|
class="extra-tiny"
|
|
type="number"
|
|
placeholder="x"
|
|
value={row.extraValue.x !== undefined ? String(row.extraValue.x) : ""}
|
|
oninput={(e) => setExtra(row, "x", e.currentTarget.value === "" ? undefined : Number(e.currentTarget.value))}
|
|
/>
|
|
<input
|
|
class="extra-tiny"
|
|
type="number"
|
|
placeholder="y"
|
|
value={row.extraValue.y !== undefined ? String(row.extraValue.y) : ""}
|
|
oninput={(e) => setExtra(row, "y", e.currentTarget.value === "" ? undefined : Number(e.currentTarget.value))}
|
|
/>
|
|
<label class="mini-switch">
|
|
<Switch
|
|
ariaLabel="Repeat while held"
|
|
bind:value={() => getOption(row, "repeating"), (v) => setOption(row, "repeating", v)}
|
|
/>
|
|
Repeat while held
|
|
</label>
|
|
{:else if row.action === "layout"}
|
|
<input
|
|
class="extra-narrow"
|
|
type="text"
|
|
placeholder="Layout command (e.g. togglesplit)"
|
|
value={(row.extraValue.layout as string) ?? ""}
|
|
oninput={(e) => setExtra(row, "layout", e.currentTarget.value)}
|
|
/>
|
|
{:else if row.action === "drag"}
|
|
<span class="extra-note">Mouse-drag bind — nothing else to set.</span>
|
|
{:else if row.action === "close" || row.action === "fullscreen" || row.action === "float" || row.action === "pseudo" || row.action === "resize" || row.action === "focus_last" || row.action === "exit"}
|
|
<span class="extra-note">No extra options for this action.</span>
|
|
{:else}
|
|
<input
|
|
class="extra-wide"
|
|
class:error={row.extraError}
|
|
type="text"
|
|
placeholder={'{"command": "..."}'}
|
|
value={row.extraText}
|
|
oninput={(e) => onExtraInput(row, e.currentTarget.value)}
|
|
/>
|
|
{/if}
|
|
|
|
{#if KNOWN_ACTIONS.includes(row.action as (typeof KNOWN_ACTIONS)[number]) && row.action !== "drag"}
|
|
<button type="button" class="advanced-toggle" onclick={() => (row.advancedOpen = !row.advancedOpen)}>
|
|
{row.advancedOpen ? "Hide raw JSON" : "Advanced"}
|
|
</button>
|
|
{/if}
|
|
{/snippet}
|
|
|
|
{#snippet section(rows: EditRow[], onAdd: () => void, onRemove: (i: number) => void)}
|
|
<div class="rows">
|
|
{#each rows as row, i (i)}
|
|
<div class="bind-card">
|
|
<div class="bind-top">
|
|
<input
|
|
class="mods"
|
|
type="text"
|
|
placeholder="SUPER, SHIFT"
|
|
bind:value={row.mods}
|
|
oninput={() => (row.modsTouched = true)}
|
|
/>
|
|
<input class="key" type="text" placeholder="key" bind:value={row.key} />
|
|
<select
|
|
class="action-select"
|
|
value={KNOWN_ACTIONS.includes(row.action as (typeof KNOWN_ACTIONS)[number]) ? row.action : "__custom__"}
|
|
onchange={(e) => {
|
|
const v = e.currentTarget.value;
|
|
row.action = v === "__custom__" ? "" : v;
|
|
}}
|
|
>
|
|
{#each KNOWN_ACTIONS as a (a)}
|
|
<option value={a}>{a}</option>
|
|
{/each}
|
|
<option value="__custom__">Custom…</option>
|
|
</select>
|
|
{#if !KNOWN_ACTIONS.includes(row.action as (typeof KNOWN_ACTIONS)[number])}
|
|
<input class="action-custom" type="text" placeholder="action name" bind:value={row.action} />
|
|
{/if}
|
|
<button type="button" class="remove" onclick={() => onRemove(i)}>Remove</button>
|
|
</div>
|
|
<div class="bind-bottom">
|
|
{@render extraFields(row)}
|
|
</div>
|
|
{#if row.advancedOpen && KNOWN_ACTIONS.includes(row.action as (typeof KNOWN_ACTIONS)[number]) && row.action !== "drag"}
|
|
<input
|
|
class="extra-wide"
|
|
class:error={row.extraError}
|
|
type="text"
|
|
placeholder={'{"command": "..."}'}
|
|
value={row.extraText}
|
|
oninput={(e) => onExtraInput(row, e.currentTarget.value)}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
<button type="button" class="add" onclick={onAdd}>Add bind</button>
|
|
{/snippet}
|
|
|
|
<ViewScaffold title="Keybinds">
|
|
{#if loadError}
|
|
<Group title="Failed to load" wide>
|
|
<Hint text={loadError} />
|
|
</Group>
|
|
{/if}
|
|
{#if loaded}
|
|
{#if kind === "unknown"}
|
|
<Group title="Keybinds" wide>
|
|
<Hint
|
|
text={`binds.json's schema wasn't recognized (expected a "bindings" key, or one of "globals"/"common"/"layouts"). Nothing below is editable, and Save is disabled, so the file on disk isn't at risk of being silently overwritten with the wrong shape. Fix or remove the file by hand, then reopen this panel.`}
|
|
/>
|
|
</Group>
|
|
{:else if kind === "flat"}
|
|
<Group
|
|
title="Defaults"
|
|
hint={`Mods/Key pick the shortcut; Action picks what it does. Choosing a known action (exec, move_dir, focus, ...) shows the fields it actually needs — e.g. a Command box for exec — instead of raw JSON. "Advanced" reveals the underlying JSON per bind for anything not covered (or breadhelp's label/category metadata). This machine's binds.json uses BOS's flat schema (no keyboard-layout switching), so that's all there is. Applies on next login/reload.`}
|
|
>
|
|
<TextField label="Default mods" bind:value={defaultMods} placeholder="SUPER" />
|
|
</Group>
|
|
|
|
<Group title="Bindings" wide>
|
|
{@render section(
|
|
bindingsRows,
|
|
() => bindingsRows.push(emptyRow()),
|
|
(i) => bindingsRows.splice(i, 1)
|
|
)}
|
|
</Group>
|
|
|
|
<SaveButton onSave={save} />
|
|
{:else}
|
|
<Group
|
|
title="Layout"
|
|
hint={`Mods/Key pick the shortcut; Action picks what it does. Choosing a known action (exec, move_dir, focus, ...) shows the fields it actually needs — e.g. a Command box for exec — instead of raw JSON. "Advanced" reveals the underlying JSON per bind for anything not covered. Applies on next login/reload.`}
|
|
>
|
|
{#if layoutOrder.length > 0}
|
|
<SelectField label="Active layout" bind:value={activeLayout} options={layoutOrder} />
|
|
{/if}
|
|
<TextField label="Default mods" bind:value={defaultMods} placeholder="SUPER" />
|
|
</Group>
|
|
|
|
<Group title="Media & function keys (globals)" wide>
|
|
{@render section(
|
|
globalsRows,
|
|
() => globalsRows.push(emptyRow()),
|
|
(i) => globalsRows.splice(i, 1)
|
|
)}
|
|
</Group>
|
|
|
|
<Group title="Common (every layout)" wide>
|
|
{@render section(
|
|
commonRows,
|
|
() => commonRows.push(emptyRow()),
|
|
(i) => commonRows.splice(i, 1)
|
|
)}
|
|
</Group>
|
|
|
|
{#each layoutOrder as name (name)}
|
|
<Group title={`Layout: ${name}`} wide>
|
|
<button type="button" class="remove-layout" onclick={() => removeLayout(name)}>Remove layout</button>
|
|
{@render section(
|
|
layoutRows[name] ?? [],
|
|
() => (layoutRows[name] ?? (layoutRows[name] = [])).push(emptyRow()),
|
|
(i) => layoutRows[name]?.splice(i, 1)
|
|
)}
|
|
</Group>
|
|
{/each}
|
|
|
|
<Group title="Add layout">
|
|
<div class="add-layout-row">
|
|
<input type="text" bind:value={newLayoutName} placeholder="new layout name" />
|
|
<button type="button" onclick={addLayout}>Add layout</button>
|
|
</div>
|
|
</Group>
|
|
|
|
<SaveButton onSave={save} />
|
|
{/if}
|
|
{/if}
|
|
</ViewScaffold>
|
|
|
|
<style>
|
|
.rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin-bottom: var(--space-sm, 8px);
|
|
}
|
|
|
|
.bind-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-xs, 4px);
|
|
background-color: var(--surface);
|
|
border-radius: var(--radius-secondary, 6px);
|
|
padding: var(--space-sm, 8px) var(--space-md, 12px);
|
|
}
|
|
|
|
.bind-top,
|
|
.bind-bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm, 8px);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.bind-card input,
|
|
.bind-card select {
|
|
background-color: var(--bg);
|
|
color: var(--on-surface);
|
|
border: 1px solid transparent;
|
|
border-radius: var(--radius-secondary, 6px);
|
|
padding: var(--space-xs, 4px) var(--space-sm, 8px);
|
|
}
|
|
|
|
.bind-card input:focus,
|
|
.bind-card select:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.bind-card input.error {
|
|
border-color: var(--red);
|
|
}
|
|
|
|
.mods {
|
|
width: 14ch;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.key {
|
|
width: 9ch;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.action-select {
|
|
width: 11ch;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.action-custom {
|
|
width: 11ch;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.extra-wide {
|
|
flex: 1;
|
|
min-width: 16ch;
|
|
font-family: monospace;
|
|
font-size: var(--font-size-secondary, 12px);
|
|
}
|
|
|
|
.extra-narrow {
|
|
width: 20ch;
|
|
}
|
|
|
|
.extra-tiny {
|
|
width: 7ch;
|
|
}
|
|
|
|
.extra-note {
|
|
opacity: 0.6;
|
|
font-size: var(--font-size-secondary, 12px);
|
|
}
|
|
|
|
.mini-switch {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: var(--font-size-secondary, 12px);
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.advanced-toggle {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--on-surface);
|
|
opacity: 0.6;
|
|
cursor: pointer;
|
|
font-size: var(--font-size-secondary, 12px);
|
|
padding: var(--space-xs, 4px) var(--space-sm, 8px);
|
|
margin-left: auto;
|
|
}
|
|
|
|
.advanced-toggle:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
border-radius: var(--radius-primary, 8px);
|
|
padding: var(--space-xs, 4px) var(--space-md, 12px);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.remove {
|
|
background-color: var(--red);
|
|
color: var(--on-red);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.add {
|
|
background-color: var(--surface);
|
|
color: var(--on-surface);
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.remove-layout {
|
|
background-color: var(--red);
|
|
color: var(--on-red);
|
|
margin-bottom: var(--space-sm, 8px);
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.add-layout-row {
|
|
display: flex;
|
|
gap: var(--space-sm, 8px);
|
|
}
|
|
|
|
.add-layout-row input {
|
|
background-color: var(--bg);
|
|
color: var(--on-surface);
|
|
border: 1px solid transparent;
|
|
border-radius: var(--radius-secondary, 6px);
|
|
padding: var(--space-xs, 4px) var(--space-sm, 8px);
|
|
}
|
|
|
|
.add-layout-row button {
|
|
background-color: var(--accent);
|
|
color: var(--on-accent);
|
|
}
|
|
</style>
|