message input theme tweaking

This commit is contained in:
ouwou 2023-11-09 02:20:42 -05:00
parent 25aadd4181
commit cb83e30a76
2 changed files with 6 additions and 1 deletions

View File

@ -33,3 +33,8 @@
.status-indicator.idle {
color: #FAA61A;
}
/* make room for attachment icon */
.message-input.with-browse-icon {
padding-left: 30px;
}

View File

@ -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);