summary refs log tree commit diff
path: root/resources/styles
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-10 23:59:50 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-10 23:59:50 +0200
commitef0b0f68795786751b04615451d42dbd7b3d7a5d (patch)
treea04f4677032d054d803e0a67929fbfe4d46eb87a /resources/styles
parentAdd gui option for joining rooms (#25) (diff)
downloadnheko-ef0b0f68795786751b04615451d42dbd7b3d7a5d.tar.xz
Add menu to invite users
Diffstat (limited to 'resources/styles')
-rw-r--r--resources/styles/nheko-dark.qss6
-rw-r--r--resources/styles/nheko.qss6
-rw-r--r--resources/styles/system.qss5
3 files changed, 17 insertions, 0 deletions
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); +}