Do not hard-code colors in classic stylesheet for SearchBanner/KeeShareBanner

Having the green-ish hard-coded color makes the banner stand out
too much when the platform native theming is used.
This commit is contained in:
Barnabás Pőcze 2023-10-08 20:34:14 +02:00 committed by Jonathan White
parent c76d9e45e7
commit 3ca757883f

View File

@ -9,8 +9,9 @@ QToolTip {
DatabaseWidget #SearchBanner, DatabaseWidget #KeeShareBanner {
font-weight: bold;
background-color: rgb(94, 161, 14);
border: 1px solid rgb(190, 190, 190);
background-color: palette(highlight);
color: palette(highlighted-text);
border: 1px solid palette(dark);
padding: 2px;
}