Fix themeing issues on mentions
3 files changed, 32 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 1e1333b2..1271e39f 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -24,6 +24,17 @@ TimelineView > * {
border: none;
}
+UserMentionsWidget,
+UserMentionsWidget > * {
+ background-color: #202228;
+ border: none;
+}
+
+UserMentionsWidget > TimelineItem {
+ qproperty-backgroundColor: #202228;
+ qproperty-hoverColor: rgba(45, 49, 57, 120);
+}
+
#scroll_widget {
background-color: #202228;
}
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index a70441be..3c7f3b71 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -24,6 +24,17 @@ TimelineView > * {
border: none;
}
+UserMentionsWidget,
+UserMentionsWidget > * {
+ background-color: white;
+ border: none;
+}
+
+UserMentionsWidget > TimelineItem {
+ qproperty-backgroundColor: white;
+ qproperty-hoverColor: rgba(192, 193, 195, 120);
+}
+
#scroll_widget {
background-color: white;
}
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index dfb8ce65..0a8c4b21 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -12,6 +12,16 @@ TimelineView > * {
border: none;
}
+UserMentionsWidget,
+UserMentionsWidget > * {
+ border: none;
+}
+
+UserMentionsWidget > TimelineItem {
+ qproperty-backgroundColor: palette(window);
+ qproperty-hoverColor: palette(base);
+}
+
TextInputWidget {
border: none;
border-top: 1px solid palette(mid);
|