4 files changed, 12 insertions, 2 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 1271e39f..35627008 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -78,9 +78,11 @@ TypingDisplay {
CommunitiesList,
CommunitiesList > * {
+ border-style: none;
background-color: #2d3139;
}
+
FlatButton {
qproperty-foregroundColor: #727274;
qproperty-backgroundColor: #333;
@@ -193,6 +195,10 @@ UserSettingsPage {
background-color: #202228;
}
+#UserSettingScrollWidget > QComboBox {
+ color: #202228;
+}
+
Avatar {
qproperty-textColor: white;
qproperty-backgroundColor: #2d3139;
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 3c7f3b71..6bcde529 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -78,6 +78,7 @@ RoomList > * {
CommunitiesList,
CommunitiesList > * {
+ border-style: none;
background-color: #2e3649;
}
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 0a8c4b21..b60b3776 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -124,6 +124,11 @@ RoomInfoListItem, UserMentionsWidget {
qproperty-bubbleFgColor: palette(text);
}
+CommunitiesList,
+CommunitiesList > * {
+ border-style: none;
+}
+
CommunitiesListItem {
qproperty-highlightedBackgroundColor: palette(highlight);
qproperty-hoverBackgroundColor: palette(light);
diff --git a/src/CommunitiesList.cpp b/src/CommunitiesList.cpp
index 2d97594a..2fb8731c 100644
--- a/src/CommunitiesList.cpp
+++ b/src/CommunitiesList.cpp
@@ -16,8 +16,6 @@ CommunitiesList::CommunitiesList(QWidget *parent)
sizePolicy.setVerticalStretch(1);
setSizePolicy(sizePolicy);
- setStyleSheet("border-style: none;");
-
topLayout_ = new QVBoxLayout(this);
topLayout_->setSpacing(0);
topLayout_->setMargin(0);
|