mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-17 23:56:55 +00:00
Tweak styling of channel header and editor footer in chat panel
This commit is contained in:
parent
fce0c1f4d0
commit
650ca1f39b
1 changed files with 13 additions and 1 deletions
|
@ -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()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue