diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-11-09 02:20:42 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-11-09 02:20:42 -0500 |
commit | cb83e30a76d76705c034541c0c1e9ef08b7b4946 (patch) | |
tree | 37be8d863e6c9e1d3cefb0bccf31833e9438c78c | |
parent | 25aadd4181b5f82f0315931b2b15953746d33af3 (diff) | |
download | abaddon-portaudio-cb83e30a76d76705c034541c0c1e9ef08b7b4946.tar.gz abaddon-portaudio-cb83e30a76d76705c034541c0c1e9ef08b7b4946.zip |
message input theme tweaking
-rw-r--r-- | res/css/bare.css | 5 | ||||
-rw-r--r-- | src/components/chatinput.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
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); |