diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-12-10 23:59:50 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-12-10 23:59:50 +0200 |
commit | ef0b0f68795786751b04615451d42dbd7b3d7a5d (patch) | |
tree | a04f4677032d054d803e0a67929fbfe4d46eb87a /resources | |
parent | Add gui option for joining rooms (#25) (diff) | |
download | nheko-ef0b0f68795786751b04615451d42dbd7b3d7a5d.tar.xz |
Add menu to invite users
Diffstat (limited to 'resources')
-rw-r--r-- | resources/icons/ui/remove-symbol.png | bin | 0 -> 533 bytes | |||
-rw-r--r-- | resources/icons/ui/remove-symbol@2x.png | bin | 0 -> 699 bytes | |||
-rw-r--r-- | resources/res.qrc | 2 | ||||
-rw-r--r-- | resources/styles/nheko-dark.qss | 6 | ||||
-rw-r--r-- | resources/styles/nheko.qss | 6 | ||||
-rw-r--r-- | resources/styles/system.qss | 5 |
6 files changed, 19 insertions, 0 deletions
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); +} |