openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #02680
[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/30699
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-22 18:36:49 +0000
@@ -41,16 +41,14 @@
MEDIA_MANAGER_STYLE = """
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);
}
"""
class VersionThread(QtCore.QThread):
Follow ups