From 7ac8f6f0e77806f8049817ed9f918d212130f348 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 1 May 2010 19:41:38 -0600 Subject: [PATCH] Use transparent background for no restriction search count instead of white --- src/calibre/gui2/ui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/ui.py b/src/calibre/gui2/ui.py index 849131b352..a36a7535ab 100644 --- a/src/calibre/gui2/ui.py +++ b/src/calibre/gui2/ui.py @@ -893,7 +893,8 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI): t = _("(all books)") else: t = _("({0} of all)").format(self.current_view().row_count()) - self.search_count.setStyleSheet('QLabel { background-color: white; }') + self.search_count.setStyleSheet( + 'QLabel { background-color: transparent; }') self.search_count.setText(t) def search_box_cleared(self):