diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-08-08 12:51:40 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-08-08 12:51:40 +0300 |
commit | 8d3ef470f9b40c891f700626a5adb7efa7602994 (patch) | |
tree | 527b8deaa7ce3c223bf71ebf431ef4529e5c24eb /resources/styles | |
parent | Add flatpak installation (diff) | |
download | nheko-8d3ef470f9b40c891f700626a5adb7efa7602994.tar.xz |
Remove hardcoded colors from the typing display
Diffstat (limited to 'resources/styles')
-rw-r--r-- | resources/styles/nheko-dark.qss | 4 | ||||
-rw-r--r-- | resources/styles/nheko.qss | 4 | ||||
-rw-r--r-- | resources/styles/system.qss | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss index 7c9ca37b..bf3d43ee 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss @@ -48,6 +48,10 @@ RoomList > * { border: none; } +TypingDisplay { + qproperty-textColor: #caccd1; +} + #roomlist_area { background-color: #2d3139; } diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss index 1752c061..3d9231d9 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss @@ -33,6 +33,10 @@ InfoMessage { qproperty-boxColor: rgba(220, 220, 220, 120); } +TypingDisplay { + qproperty-textColor: #333; +} + SuggestionsPopup { background-color: white; } diff --git a/resources/styles/system.qss b/resources/styles/system.qss index 7dc37418..e518f084 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss @@ -31,6 +31,10 @@ QuickSwitcher { background-color: palette(window); } +TypingDisplay { + qproperty-textColor: palette(text); +} + InfoMessage { qproperty-textColor: palette(text); qproperty-boxColor: palette(window); |