Communities (#195)
3 files changed, 27 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index a78fb612..26425590 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -17,6 +17,10 @@ RoomList > * {
background-color: #383c4a;
}
+CommunitiesList,
+CommunitiesList > * {
+ background-color: #383c4a;
+}
FlatButton {
qproperty-foregroundColor: #caccd1;
qproperty-backgroundColor: #333;
@@ -54,6 +58,12 @@ RoomInfoListItem {
qproperty-btnTextColor: white;
}
+CommunitiesListItem {
+ qproperty-highlightedBackgroundColor: #5294e2;
+ qproperty-hoverBackgroundColor: #39679e;
+ qproperty-backgroundColor: #383c4a;
+}
+
LoadingIndicator {
qproperty-color: #caccd1;
}
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index ce86e212..c135c12a 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -17,6 +17,11 @@ RoomList > * {
background-color: white;
}
+CommunitiesList,
+CommunitiesList > * {
+ background-color: white;
+}
+
FlatButton {
qproperty-foregroundColor: #333;
}
@@ -52,6 +57,12 @@ RoomInfoListItem {
qproperty-btnTextColor: #333;
}
+CommunitiesListItem {
+ qproperty-highlightedBackgroundColor: #38A3D8;
+ qproperty-hoverBackgroundColor: rgba(200, 200, 200, 128);
+ qproperty-backgroundColor: white;
+}
+
#ChatPageLoadSpinner {
qproperty-color: #acc7dc;
}
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index afb2ad26..42aba09d 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -60,6 +60,12 @@ RoomInfoListItem {
qproperty-btnTextColor: palette(text);
}
+CommunitiesListItem {
+ qproperty-highlightedBackgroundColor: palette(highlight);
+ qproperty-hoverBackgroundColor: palette(mid);
+ qproperty-backgroundColor: palette(window);
+}
+
LoadingIndicator {
qproperty-color: palette(highlight);
}
|