From cb83e30a76d76705c034541c0c1e9ef08b7b4946 Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Thu, 9 Nov 2023 02:20:42 -0500 Subject: message input theme tweaking --- res/css/bare.css | 5 +++++ src/components/chatinput.cpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/res/css/bare.css b/res/css/bare.css index 80ef2f8..ec5b9a1 100644 --- a/res/css/bare.css +++ b/res/css/bare.css @@ -33,3 +33,8 @@ .status-indicator.idle { color: #FAA61A; } + +/* make room for attachment icon */ +.message-input.with-browse-icon { + padding-left: 30px; +} diff --git a/src/components/chatinput.cpp b/src/components/chatinput.cpp index c802413..af092e1 100644 --- a/src/components/chatinput.cpp +++ b/src/components/chatinput.cpp @@ -20,7 +20,7 @@ ChatInputText::ChatInputText() { m_textview.signal_key_press_event().connect(cb, false); m_textview.set_hexpand(false); m_textview.set_halign(Gtk::ALIGN_FILL); - m_textview.set_valign(Gtk::ALIGN_CENTER); + m_textview.set_valign(Gtk::ALIGN_FILL); m_textview.set_wrap_mode(Gtk::WRAP_WORD_CHAR); m_textview.show(); add(m_textview); -- cgit v1.2.3