diff --git a/resources/icons/ui/remove-symbol.png b/resources/icons/ui/remove-symbol.png
new file mode 100644
index 00000000..0b610853
--- /dev/null
+++ b/resources/icons/ui/remove-symbol.png
Binary files differdiff --git a/resources/icons/ui/remove-symbol@2x.png b/resources/icons/ui/remove-symbol@2x.png
new file mode 100644
index 00000000..aa37086b
--- /dev/null
+++ b/resources/icons/ui/remove-symbol@2x.png
Binary files differdiff --git a/resources/res.qrc b/resources/res.qrc
index d15dd04c..83415e9b 100644
--- a/resources/res.qrc
+++ b/resources/res.qrc
@@ -30,6 +30,8 @@
<file>icons/ui/play-sign@2x.png</file>
<file>icons/ui/pause-symbol.png</file>
<file>icons/ui/pause-symbol@2x.png</file>
+ <file>icons/ui/remove-symbol.png</file>
+ <file>icons/ui/remove-symbol@2x.png</file>
<file>icons/emoji-categories/people.png</file>
<file>icons/emoji-categories/people@2x.png</file>
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 5704fee1..42ee6740 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -79,11 +79,17 @@ Avatar {
dialogs--Logout,
dialogs--LeaveRoom,
+dialogs--InviteUsers,
dialogs--JoinRoom {
background-color: #383c4a;
color: #caccd1;
}
+QListWidget {
+ background-color: #383c4a;
+ color: #caccd1;
+}
+
WelcomePage,
LoginPage,
RegisterPage {
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 8ffe625b..6c592ac8 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -81,11 +81,17 @@ Avatar {
dialogs--Logout,
dialogs--LeaveRoom,
+dialogs--InviteUsers,
dialogs--JoinRoom {
background-color: white;
color: #333;
}
+QListWidget {
+ background-color: white;
+ color: #333;
+}
+
WelcomePage,
LoginPage,
RegisterPage {
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index cc54402f..f3bf619d 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -89,3 +89,8 @@ ScrollBar {
qproperty-handleColor: palette(text);
qproperty-backgroundColor: palette(window);
}
+
+QListWidget {
+ background-color: palette(window);
+ color: palette(text);
+}
|