Add hover color for timestamp.
Update dark and system themes to provide
colors for the hover states for title, subtitle, and timestamp.
3 files changed, 9 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 1f6631f7..86056bb2 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -93,6 +93,9 @@ RoomInfoListItem {
qproperty-titleColor: #e4e5e8;
qproperty-subtitleColor: #caccd1;
+ qproperty-hoverTitleColor: #f4f5f8;
+ qproperty-hoverSubtitleColor: white;
+
qproperty-highlightedTitleColor: #f4f4f5;
qproperty-highlightedSubtitleColor: #e4e5e8;
@@ -101,6 +104,7 @@ RoomInfoListItem {
qproperty-timestampColor: #727274;
qproperty-highlightedTimestampColor: #e7e7e9;
+ qproperty-hoverTimestampColor: #f4f5f8;
qproperty-avatarBgColor: #202228;
qproperty-avatarFgColor: white;
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index bf616c1f..ca5a8f0d 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -100,6 +100,7 @@ RoomInfoListItem {
qproperty-timestampColor: #707070;
qproperty-highlightedTimestampColor: #f4f4f5;
+ qproperty-hoverTimestampColor: white;
qproperty-avatarBgColor: #eee;
qproperty-avatarFgColor: black;
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 4348d6e7..45263e96 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -92,11 +92,15 @@ RoomInfoListItem {
qproperty-highlightedTitleColor: palette(highlightedtext);
qproperty-highlightedSubtitleColor: palette(highlightedtext);
+ qproperty-hoverTitleColor: palette(highlightedtext);
+ qproperty-hoverSubtitleColor: palette(highlightedtext);
+
qproperty-btnColor: palette(button);
qproperty-btnTextColor: palette(buttonText);
qproperty-timestampColor: palette(text);
qproperty-highlightedTimestampColor: palette(highlightedtext);
+ qproperty-hoverTimestampColor: palette(highlightedtext);
qproperty-avatarBgColor: palette(base);
qproperty-avatarFgColor: palette(text);
|