3 files changed, 15 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 034728f3..61643710 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -22,6 +22,11 @@ QuickSwitcher {
background-color: #202228;
}
+PopupItem {
+ background-color: #202228;
+ qproperty-hoverColor: rgba(45, 49, 57, 120);
+}
+
RoomList,
RoomList > * {
background-color: #2d3139;
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index e18704b5..b028c7d6 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -22,6 +22,11 @@ QuickSwitcher {
background-color: white;
}
+PopupItem {
+ background-color: white;
+ qproperty-hoverColor: rgba(192, 193, 195, 120);
+}
+
RoomList,
RoomList > * {
background-color: white;
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 60b8865a..ce63f44e 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -25,6 +25,11 @@ QuickSwitcher {
background-color: palette(window);
}
+PopupItem {
+ background-color: palette(window);
+ qproperty-hoverColor: rgba(192, 193, 195, 120);
+}
+
FlatButton {
qproperty-foregroundColor: palette(text);
}
|