← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~j-corwin/openlp/bug-1085609 into lp:openlp/2.0

 

Jonathan Corwin has proposed merging lp:~j-corwin/openlp/bug-1085609 into lp:openlp/2.0.

Requested reviews:
  OpenLP Core (openlp-core)
Related bugs:
  Bug #1085609 in OpenLP: "Transparent theme no longer transparent but white"
  https://bugs.launchpad.net/openlp/+bug/1085609

For more details, see:
https://code.launchpad.net/~j-corwin/openlp/bug-1085609/+merge/138594

Fix CSS so transparent backgrounds work again
-- 
https://code.launchpad.net/~j-corwin/openlp/bug-1085609/+merge/138594
Your team OpenLP Core is requested to review the proposed merge of lp:~j-corwin/openlp/bug-1085609 into lp:openlp/2.0.
=== modified file 'openlp/core/__init__.py'
--- openlp/core/__init__.py	2012-11-22 18:01:50 +0000
+++ openlp/core/__init__.py	2012-12-06 22:14:40 +0000
@@ -133,7 +133,8 @@
             base_color = self.palette().color(QtGui.QPalette.Active,
                 QtGui.QPalette.Base)
             application_stylesheet = \
-                u'* {alternate-background-color: ' + \
+                u'QTableWidget, QListWidget, QTreeWidget ' + \
+                u'{alternate-background-color: ' + \
                 base_color.name() + ';}\n'
             application_stylesheet += nt_repair_stylesheet
             self.setStyleSheet(application_stylesheet)


Follow ups