diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-07-25 23:07:56 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-07-25 23:07:56 +0300 |
commit | 1f47a6af3a1c09e18ce49b67a635be981557a6e0 (patch) | |
tree | 20e00db7e8bc9315642b12890770ee170517f05d /resources/styles | |
parent | Enable scrollbar on the room list for macOS (#174) (diff) | |
download | nheko-1f47a6af3a1c09e18ce49b67a635be981557a6e0.tar.xz |
Improve the style of snackbar a bit
Diffstat (limited to 'resources/styles')
-rw-r--r-- | resources/styles/nheko-dark.qss | 5 | ||||
-rw-r--r-- | resources/styles/nheko.qss | 5 | ||||
-rw-r--r-- | resources/styles/system.qss | 10 |
3 files changed, 20 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss index 7caa7efb..5c8fc976 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss @@ -233,3 +233,8 @@ Toggle { qproperty-inactiveColor: gray; qproperty-trackColor: rgb(240, 240, 240); } + +SnackBar { + qproperty-textColor: #caccd1; + qproperty-bgColor: #202228; +} diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss index 3f06f79f..7184dbfb 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss @@ -221,3 +221,8 @@ Toggle { qproperty-inactiveColor: gray; qproperty-trackColor: rgb(240, 240, 240); } + +SnackBar { + qproperty-textColor: white; + qproperty-bgColor: #495057; +} diff --git a/resources/styles/system.qss b/resources/styles/system.qss index 7a90e039..7dc37418 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss @@ -14,6 +14,11 @@ OverlayWidget > * { border-left: 1px solid palette(text); } +TopRoomBar { + qproperty-borderColor: palette(text); + border: none; +} + TimelineView, TimelineView > *, TimelineItem, @@ -150,3 +155,8 @@ QListWidget { background-color: palette(window); color: palette(text); } + +SnackBar { + qproperty-textColor: palette(text); + qproperty-bgColor: palette(base); +} |