From 4307a06073b68126d07d829b601ade0f42073421 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 7 Sep 2023 14:16:44 -0600 Subject: [PATCH] WIP --- crates/storybook/src/workspace.rs | 47 +++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 3 deletions(-) diff --git a/crates/storybook/src/workspace.rs b/crates/storybook/src/workspace.rs index b3eb5b31143543b6f5aa83fb7b0159e9e6d38806..17c0877339e2da53d3c0e4cbf4eecd093c7925de 100644 --- a/crates/storybook/src/workspace.rs +++ b/crates/storybook/src/workspace.rs @@ -416,9 +416,50 @@ impl WorkspaceElement { .items_start() .text_color(theme.lowest.base.default.foreground) .fill(theme.middle.warning.default.background) - .child(titlebar()) - .child(collab_panel()) - .child(statusbar()) + .child( + div() + .w_full() + .h_8() + .fill(theme.lowest.negative.default.background) + .child(titlebar()), + ) + .child( + div() + .flex_1() + .fill(theme.lowest.warning.default.background) + .child(collab_panel()), + ) + .child( + div() + .w_full() + .h_9() + .fill(theme.lowest.positive.default.background) + .child(statusbar()) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.negative.default.background), + ) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.positive.default.background), + ) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.accent.default.background), + ) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.warning.default.background), + ), + ) } }