Allow users to hide rooms with specific tags
3 files changed, 5 insertions, 2 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 547e4256..af189f0e 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -155,11 +155,12 @@ RoomInfoListItem > Avatar {
CommunitiesListItem {
qproperty-highlightedBackgroundColor: #4d84c7;
+ qproperty-disabledBackgroundColor: palette(mid);
qproperty-hoverBackgroundColor: rgb(67, 70, 77);
qproperty-backgroundColor: #2d3139;
qproperty-avatarBgColor: #202228;
- qproperty-avatarFgColor: palette(window);
+ qproperty-avatarFgColor: black;
}
LoadingIndicator {
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 81d97f65..edf3880b 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -122,11 +122,12 @@ RoomInfoListItem > Avatar {
CommunitiesListItem {
qproperty-highlightedBackgroundColor: #38A3D8;
+ qproperty-disabledBackgroundColor: palette(mid);
qproperty-hoverBackgroundColor: rgb(70, 77, 93);
qproperty-backgroundColor: #f2f5f8;
qproperty-avatarBgColor: #eee;
- qproperty-avatarFgColor: black;
+ qproperty-avatarFgColor: palette(buttonText);
}
#ChatPageLoadSpinner {
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index d65c8baa..bab85126 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -118,6 +118,7 @@ RoomInfoListItem > Avatar {
CommunitiesListItem {
qproperty-highlightedBackgroundColor: palette(highlight);
+ qproperty-disabledBackgroundColor: palette(mid);
qproperty-hoverBackgroundColor: palette(light);
qproperty-backgroundColor: palette(window);
|