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


Commits:
e51c512a by wurstsalat at 2024-10-20T11:58:47+02:00
cfix: ReactionsBar: Fix add reaction button style

- - - - -


2 changed files:

- gajim/data/style/gajim.css
- gajim/gtk/conversation/reactions_bar.py


Changes:

=====================================
gajim/data/style/gajim.css
=====================================
@@ -844,10 +844,10 @@ .reaction {
 .reaction label {
     font-size: 90%;
 }
-.reaction > button {
-    border: none;
-    padding: 0;
-    background: transparent;
+.reaction-add > button {
+    border: 1px solid @borders;
+    border-radius: 18px;
+    padding: 2px;
 }
 .dummy-emoji-entry {
     padding: 0;


=====================================
gajim/gtk/conversation/reactions_bar.py
=====================================
@@ -12,7 +12,6 @@
 import logging
 from collections import defaultdict
 
-from gi.repository import GObject
 from gi.repository import Gtk
 
 from gajim.common import app
@@ -64,7 +63,7 @@ def __init__(self, message_row: MessageRow, contact: 
types.ChatContactT) -> None
             popover=emoji_popover,
         )
         add_reaction_button.add_css_class('flat')
-        add_reaction_button.add_css_class('reaction')
+        add_reaction_button.add_css_class('reaction-add')
 
         self.append(add_reaction_button)
 



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

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/e51c512a86042dca59faa3ce3c72ab80dedfd2d5
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