@@ -51,7 +51,7 @@ class GUI_EXPORT QgsOptionsDialogHighlightLabel : public QgsOptionsDialogHighlig
51
51
virtual bool highlightText ( const QString &text ) override ;
52
52
virtual void reset () override ;
53
53
QPointer<QLabel> mLabel ;
54
- QString mStyleSheet = QStringLiteral( /* !search!*/ " QLabel { background-color: yellow ; color: blue ;}/*!search!*/" );
54
+ QString mStyleSheet = QStringLiteral( /* !search!*/ " QLabel { background-color: rgb(255, 251, 190) ; color: black ;}/*!search!*/" );
55
55
};
56
56
57
57
/* *
@@ -72,7 +72,7 @@ class GUI_EXPORT QgsOptionsDialogHighlightCheckBox : public QgsOptionsDialogHigh
72
72
virtual bool highlightText ( const QString &text ) override ;
73
73
virtual void reset () override ;
74
74
QPointer<QCheckBox> mCheckBox ;
75
- QString mStyleSheet = QStringLiteral( " /*!search!*/QCheckBox { background-color: yellow ; color: blue ;}/*!search!*/" );
75
+ QString mStyleSheet = QStringLiteral( " /*!search!*/QCheckBox { background-color: rgb(255, 251, 190) ; color: black ;}/*!search!*/" );
76
76
};
77
77
78
78
/* *
@@ -93,7 +93,7 @@ class GUI_EXPORT QgsOptionsDialogHighlightButton : public QgsOptionsDialogHighli
93
93
virtual bool highlightText ( const QString &text ) override ;
94
94
virtual void reset () override ;
95
95
QPointer<QAbstractButton> mButton ;
96
- QString mStyleSheet = QStringLiteral( " /*!search!*/QAbstractButton { background-color: yellow ; color: blue ;}/*!search!*/" );
96
+ QString mStyleSheet = QStringLiteral( " /*!search!*/QAbstractButton { background-color: rgb(255, 251, 190) ; color: black ;}/*!search!*/" );
97
97
};
98
98
99
99
/* *
@@ -114,7 +114,7 @@ class GUI_EXPORT QgsOptionsDialogHighlightGroupBox : public QgsOptionsDialogHigh
114
114
virtual bool highlightText ( const QString &text ) override ;
115
115
virtual void reset () override ;
116
116
QPointer<QGroupBox> mGroupBox ;
117
- QString mStyleSheet = QStringLiteral( " /*!search!*/QGroupBox::title { background-color: yellow ; color: blue ;}/*!search!*/" );
117
+ QString mStyleSheet = QStringLiteral( " /*!search!*/QGroupBox::title { background-color: rgb(255, 251, 190) ; color: black ;}/*!search!*/" );
118
118
};
119
119
120
120
/* *
0 commit comments