From 650ca1f39b7bdb4bee7347d47b568b9ab89e3588 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 8 Dec 2023 13:04:25 -0800 Subject: [PATCH] Tweak styling of channel header and editor footer in chat panel --- crates/collab_ui2/src/chat_panel.rs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/crates/collab_ui2/src/chat_panel.rs b/crates/collab_ui2/src/chat_panel.rs index 4a8f255f6961fa05df9a07956e797ca0ec503ca6..9b0c176abe4a1a6d694519e71d0c725d01d2e164 100644 --- a/crates/collab_ui2/src/chat_panel.rs +++ b/crates/collab_ui2/src/chat_panel.rs @@ -19,6 +19,7 @@ use rich_text::RichText; use serde::{Deserialize, Serialize}; use settings::{Settings, SettingsStore}; use std::sync::Arc; +use theme::ActiveTheme as _; use time::{OffsetDateTime, UtcOffset}; use ui::{ h_stack, prelude::WindowContext, v_stack, Avatar, Button, ButtonCommon as _, Clickable, Icon, @@ -317,7 +318,12 @@ impl ChatPanel { .child( h_stack() .w_full() + .h_7() .justify_between() + .z_index(1) + .bg(cx.theme().colors().background) + .border() + .border_color(gpui::red()) .child(Label::new( self.active_chat .as_ref() @@ -339,7 +345,13 @@ impl ChatPanel { ), ) .child(div().grow().child(self.render_active_channel_messages(cx))) - .child(self.input_editor.clone()) + .child( + div() + .z_index(1) + .p_2() + .bg(cx.theme().colors().background) + .child(self.input_editor.clone()), + ) .into_any() }