Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-10-26 19:54:29 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-11-01 12:13:29 (GMT)
commitcc5368280c1b110c08c2370f81f076e10f3ef290 (patch)
treed2205d165eb717b707bd7f6b07d6c3390a8a5925
parentbb71f181e6ee5b05daaf8c167fc55610ece9baa3 (diff)
Journal details view: add CSS class to the preview box in order to style it - SL #3956
Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
-rw-r--r--src/jarabe/journal/expandedentry.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jarabe/journal/expandedentry.py b/src/jarabe/journal/expandedentry.py
index 19e8144..bf34632 100644
--- a/src/jarabe/journal/expandedentry.py
+++ b/src/jarabe/journal/expandedentry.py
@@ -109,6 +109,8 @@ class ExpandedEntry(Gtk.EventBox):
# First body column
self._preview_box = Gtk.Frame()
+ style_context = self._preview_box.get_style_context()
+ style_context.add_class('journal-preview-box')
first_column.pack_start(self._preview_box, False, True, 0)
self._technical_box = Gtk.VBox()