← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~raoul-snyman/openlp/ui-tweaks into lp:openlp

 

Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/ui-tweaks into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)


Let me know what you think... I'm trying to make the active media item stand out a little more.
-- 
https://code.launchpad.net/~raoul-snyman/openlp/ui-tweaks/+merge/30585
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/ui-tweaks into lp:openlp.
=== modified file 'openlp/core/ui/mainwindow.py'
--- openlp/core/ui/mainwindow.py	2010-07-19 07:54:22 +0000
+++ openlp/core/ui/mainwindow.py	2010-07-21 21:41:48 +0000
@@ -39,18 +39,16 @@
 log = logging.getLogger(__name__)
 
 MEDIA_MANAGER_STYLE = """
+  QToolBox::tab:selected {
+    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+        stop: 0 palette(light), stop: 0.5 palette(button), stop: 1.0 palette(dark));
+    border: 1px groove palette(dark);
+  }
   QToolBox::tab {
     background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
-        stop: 0 palette(button), stop: 1.0 palette(dark));
-    border-width: 1px;
-    border-style: outset;
-    border-color: palette(dark);
-    border-radius: 5px;
-  }
-  QToolBox::tab:selected {
-    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
-        stop: 0 palette(light), stop: 1.0 palette(button));
-    border-color: palette(button);
+        stop: 0 palette(midlight), stop: 0.5 palette(button), stop: 1.0 palette(mid));
+    border: 1px groove palette(mid);
+    border-radius: 6px;
   }
 """
 class VersionThread(QtCore.QThread):


Follow ups