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.
This commit is contained in:
Tobias Doerffel
2010-05-26 12:27:23 +02:00
parent f9015ac945
commit d7ce7d485b
2 changed files with 10 additions and 0 deletions

View File

@@ -74,6 +74,11 @@ automationEditor {
}
QToolTip {
background: rgb(224,224,224);
color: black;
}
QMenu {
border:1px solid black;
background-color: rgb( 192, 192, 192 );

View File

@@ -45,6 +45,11 @@ automationEditor {
}
QToolTip {
background: rgb(224,224,224);
color: black;
}
QMenu {
border:1px solid black;
background-color: rgb( 192, 192, 192 );