3 files changed, 12 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 61643710..ff18b338 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -22,6 +22,10 @@ QuickSwitcher {
background-color: #202228;
}
+SuggestionsPopup {
+ background-color: #202228;
+}
+
PopupItem {
background-color: #202228;
qproperty-hoverColor: rgba(45, 49, 57, 120);
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index c7d57252..e0b3ad55 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -22,6 +22,10 @@ QuickSwitcher {
background-color: white;
}
+SuggestionsPopup {
+ background-color: white;
+}
+
PopupItem {
background-color: white;
qproperty-hoverColor: rgba(192, 193, 195, 120);
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 5ebc4dd6..17302a1d 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -25,6 +25,10 @@ QuickSwitcher {
background-color: palette(window);
}
+SuggestionsPopup {
+ background-color: palette(window);
+}
+
PopupItem {
background-color: palette(window);
qproperty-hoverColor: rgba(192, 193, 195, 120);
|