Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
f20021f8 by wurstsalat at 2024-08-02T23:44:08+02:00
fix: MessageInputTextView: Make background transparent

Background color would sometimes be visible if multiple lines have been added,
starting a layout scroll, which would then reveal a grey bar.

- - - - -


2 changed files:

- gajim/data/style/gajim.css
- gajim/gtk/message_input.py


Changes:

=====================================
gajim/data/style/gajim.css
=====================================
@@ -556,6 +556,9 @@ .message-actions-box-button {
 }
 
 /* MessageInputTextView */
+.message-input-textview {
+    background-color: transparent;
+}
 .message-input-border {
     border: 2px solid @theme_unfocused_bg_color;
     border-radius: 4px;


=====================================
gajim/gtk/message_input.py
=====================================
@@ -72,6 +72,7 @@ def __init__(self) -> None:
         )
 
         self.get_style_context().add_class('gajim-conversation-text')
+        self.get_style_context().add_class('message-input-textview')
 
         self._contact: ChatContactT | None = None
 



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/f20021f804ef28dcc564f64f12ca1e94638305dc

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/f20021f804ef28dcc564f64f12ca1e94638305dc
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to