Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2014-07-17 17:36:31 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2014-07-17 17:36:31 (GMT)
commit3216a22d932568eabaf779e7622234b8a480230c (patch)
tree29bcd00f1f4519e17c0fd485b464d27db1a4b2a2
parent58d9358a635f8c2463bc9fe436b9e5f6288ed030 (diff)
Set right color in empty cardlist background
-rw-r--r--cardlist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cardlist.py b/cardlist.py
index 4d0f347..b6cf6f4 100644
--- a/cardlist.py
+++ b/cardlist.py
@@ -53,7 +53,7 @@ class CardList(Gtk.EventBox):
self.hbox = Gtk.HBox(False)
fill_box = Gtk.Label()
- fill_box.modify_bg(Gtk.StateType.NORMAL, Gdk.color_parse('#000000'))
+ fill_box.modify_bg(Gtk.StateType.NORMAL, Gdk.color_parse('#d7d7d7'))
fill_box.show()
self.hbox.pack_end(fill_box, True, True, 0)
@@ -63,7 +63,7 @@ class CardList(Gtk.EventBox):
self._scroll.add_with_viewport(self.hbox)
self._scroll.set_border_width(0)
self._scroll.get_child().modify_bg(Gtk.StateType.NORMAL,
- Gdk.color_parse('#000000'))
+ Gdk.color_parse('#d7d7d7'))
self.add(self._scroll)
self.set_size_request(-1, PAIR_SIZE * 2 + style.DEFAULT_SPACING * 4)
self.show_all()