summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-03-24 23:16:15 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-03-24 23:16:15 +0200
commit553a97c8bb5042fbef0487255af52a4a6793d0fd (patch)
tree637a38c762fa6847c16cc9245a795c69314941f6 /resources
parentAdjust version number for the windows build (diff)
downloadnheko-553a97c8bb5042fbef0487255af52a4a6793d0fd.tar.xz
Add basic support for username auto-completion
fixes #40
Diffstat (limited to 'resources')
-rw-r--r--resources/styles/nheko-dark.qss5
-rw-r--r--resources/styles/nheko.qss5
-rw-r--r--resources/styles/system.qss5
3 files changed, 15 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss

index 034728f3..61643710 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss
@@ -22,6 +22,11 @@ QuickSwitcher { background-color: #202228; } +PopupItem { + background-color: #202228; + qproperty-hoverColor: rgba(45, 49, 57, 120); +} + RoomList, RoomList > * { background-color: #2d3139; diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index e18704b5..b028c7d6 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss
@@ -22,6 +22,11 @@ QuickSwitcher { background-color: white; } +PopupItem { + background-color: white; + qproperty-hoverColor: rgba(192, 193, 195, 120); +} + RoomList, RoomList > * { background-color: white; diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 60b8865a..ce63f44e 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss
@@ -25,6 +25,11 @@ QuickSwitcher { background-color: palette(window); } +PopupItem { + background-color: palette(window); + qproperty-hoverColor: rgba(192, 193, 195, 120); +} + FlatButton { qproperty-foregroundColor: palette(text); }