summary refs log tree commit diff
path: root/resources/styles
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-01-23 00:30:45 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-23 00:49:28 +0100
commitfdb9d7ab40da1d6b40ae11c3988af7082b6bc7cd (patch)
tree25e3cff2e5824c6b94c10d349b925f91623f4cc5 /resources/styles
parentFix font tags showing up in playable media messages (diff)
downloadnheko-fdb9d7ab40da1d6b40ae11c3988af7082b6bc7cd.tar.xz
Allow users to hide rooms with specific tags
Diffstat (limited to 'resources/styles')
-rw-r--r--resources/styles/nheko-dark.qss3
-rw-r--r--resources/styles/nheko.qss3
-rw-r--r--resources/styles/system.qss1
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);