← 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:
  Jon Tibble (meths)
  Tim Bentley (trb143)


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/30712
Your team OpenLP Core is subscribed to branch 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-22 20:13:01 +0000
@@ -39,18 +39,22 @@
 log = logging.getLogger(__name__)
 
 MEDIA_MANAGER_STYLE = """
+  QToolBox {
+    padding-bottom: 2px;
+  }
   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);
+        stop: 0 palette(button), stop: 0.5 palette(button),
+        stop: 1.0 palette(mid));
+    border: 1px groove palette(mid);
     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(light), stop: 0.5 palette(midlight),
+        stop: 1.0 palette(dark));
+    border: 1px groove palette(dark);
+    font-weight: bold;
   }
 """
 class VersionThread(QtCore.QThread):


Follow ups