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


Commits:
2cf08d52 by wurstsalat at 2022-11-16T12:44:11+01:00
cfix: SearchView: Add separate class for search view rows

- - - - -


2 changed files:

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


Changes:

=====================================
gajim/data/style/gajim.css
=====================================
@@ -478,6 +478,10 @@ .search-view {
     border-left: 1px solid @borders;
     background-color: @theme_base_color;
 }
+.search-view-row {
+    padding: 4px 3px 4px 6px;
+    border-radius: 4px;
+}
 .search-view-row-grid textview {
        background: transparent;
 }


=====================================
gajim/gtk/search_view.py
=====================================
@@ -411,7 +411,7 @@ def __init__(self, msg: SearchLogRow, account: str, jid: 
JID) -> None:
         self.contact = self._client.get_module('Contacts').get_contact(
             jid, groupchat=self.type == 'groupchat')
 
-        self.get_style_context().add_class('conversation-row')
+        self.get_style_context().add_class('search-view-row')
         self._ui = get_builder('search_view.ui')
         self.add(self._ui.result_row_grid)
 



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

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


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to