From d63270cd06e8cd0d1426801988f325eca031afd1 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 26 May 2010 12:27:23 +0200 Subject: [PATCH] Themes: explicitely set background and text color for tooltips As the colors of QToolTip depend on the desktop environment used, explicitely set background and text color for fixing cases like white text on bright yellow background. Closes #3006955. (cherry picked from commit d7ce7d485b73053235e7258b24563a7ba5699029) --- data/themes/default/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/data/themes/default/style.css b/data/themes/default/style.css index ba1684591..a514aca0d 100644 --- a/data/themes/default/style.css +++ b/data/themes/default/style.css @@ -12,6 +12,12 @@ automationEditor { background-color: rgb(0, 0, 0); } + +QToolTip { + background: rgb(224,224,224); + color: black; +} + QMenu { border:1px solid black; background-color: rgb( 192, 192, 192 );