From 2d8073fcb5da1496867b09d4ab13317a3c18a382 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sun, 18 Oct 2009 17:09:09 +0200 Subject: [PATCH] Lighten the gradient of the toolbox titles. --- openlp/core/ui/mainwindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 995b53f3c..4a655512d 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -38,7 +38,7 @@ from openlp.core.utils import check_latest_version media_manager_style = """ QToolBox::tab { background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 palette(midlight), stop: 1.0 palette(dark)); + stop: 0 palette(midlight), stop: 1.0 palette(mid)); border-width: 1px; border-style: outset; border-color: palette(midlight); @@ -46,7 +46,7 @@ media_manager_style = """ } QToolBox::tab:selected { background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 palette(light), stop: 1.0 palette(dark)); + stop: 0 palette(light), stop: 1.0 palette(mid)); border-color: palette(light); } """