From 3c3e4d1e6e334bd4950661297b7f3492b8e535f9 Mon Sep 17 00:00:00 2001 From: Nico Alt <nicoalt@posteo.org> Date: Thu, 26 Mar 2020 12:00:00 +0000 Subject: [PATCH] Change css property name room-row to contact-row --- briar-gtk/briar_gtk/widgets/contact_row.py | 2 +- briar-gtk/data/ui/application.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/briar-gtk/briar_gtk/widgets/contact_row.py b/briar-gtk/briar_gtk/widgets/contact_row.py index 09aaa51..ae583db 100644 --- a/briar-gtk/briar_gtk/widgets/contact_row.py +++ b/briar-gtk/briar_gtk/widgets/contact_row.py @@ -45,7 +45,7 @@ class ContactRowWidget(Gtk.ListBoxRow): @staticmethod def _create_contact_box(): contact_box = Gtk.Box(Gtk.Orientation.HORIZONTAL, 5) - contact_box.get_style_context().add_class("room-row") + contact_box.get_style_context().add_class("contact-row") return contact_box def _set_action(self, contact_id): diff --git a/briar-gtk/data/ui/application.css b/briar-gtk/data/ui/application.css index 27852f2..bbcfcb6 100644 --- a/briar-gtk/data/ui/application.css +++ b/briar-gtk/data/ui/application.css @@ -77,7 +77,7 @@ row .timestamp { } /** Sidebar **/ -.room-row { +.contact-row { padding: 6px 6px; } -- GitLab