From patchwork Thu Mar 22 23:31:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 5/9] lib/bb/ui/crumbs: add colour for HobAltButton per visual design Date: Thu, 22 Mar 2012 23:31:10 -0000 From: Joshua Lock X-Patchwork-Id: 24211 Message-Id: <573593c0c86b47a0ccec5a3c87c96eaebd05817d.1332458487.git.josh@linux.intel.com> To: bitbake-devel@lists.openembedded.org The visual design calls for the alternative button to have a pale blue colour. Signed-off-by: Joshua Lock --- lib/bb/ui/crumbs/hobcolor.py | 1 + lib/bb/ui/crumbs/hobwidget.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/bb/ui/crumbs/hobcolor.py b/lib/bb/ui/crumbs/hobcolor.py index f767d22..4595dc1 100644 --- a/lib/bb/ui/crumbs/hobcolor.py +++ b/lib/bb/ui/crumbs/hobcolor.py @@ -31,6 +31,7 @@ class HobColors: BLACK = "#000000" LIGHT_ORANGE = "#f7a787" YELLOW = "#ffff00" + PALE_BLUE = "#53b8ff" OK = WHITE RUNNING = PALE_GREEN diff --git a/lib/bb/ui/crumbs/hobwidget.py b/lib/bb/ui/crumbs/hobwidget.py index e8549a1..b93e9d4 100644 --- a/lib/bb/ui/crumbs/hobwidget.py +++ b/lib/bb/ui/crumbs/hobwidget.py @@ -200,8 +200,9 @@ class HobAltButton(gtk.Button): """ A gtk.Button subclass which has no relief, and so is more discrete """ - def __init__(self, label=None): - gtk.Button.__init__(self, label) + def __init__(self, label): + gtk.Button.__init__(self, "%s" % (HobColors.PALE_BLUE, gobject.markup_escape_text(label))) + self.child.set_use_markup(True) self.set_relief(gtk.RELIEF_NONE) class HobImageButton(gtk.Button):