summary refs log tree commit diff
path: root/resources/styles
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-11-28 02:01:37 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-11-28 02:01:37 +0200
commitb21942a3e3db3e425155c58483a99bc2789de241 (patch)
tree860ffe40a5028b78df79de37a9b866a772885b1f /resources/styles
parentRemove another /messages call (#139) (diff)
downloadnheko-b21942a3e3db3e425155c58483a99bc2789de241.tar.xz
Add read support for m.file messages (#24)
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.qss6
3 files changed, 18 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss

index 0d68acfb..1a32ced3 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss
@@ -22,6 +22,12 @@ FlatButton { qproperty-backgroundColor: #333; } +FileItem { + qproperty-textColor: #caccd1; + qproperty-backgroundColor: #414A59; + qproperty-iconColor: #caccd1; +} + RaisedButton { qproperty-foregroundColor: #caccd1; qproperty-backgroundColor: #333; diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 4840e9b5..3e889530 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss
@@ -21,6 +21,12 @@ FlatButton { qproperty-foregroundColor: #333; } +FileItem { + qproperty-textColor: #333; + qproperty-backgroundColor: #f2f2f2; + qproperty-iconColor: white; +} + RaisedButton { qproperty-foregroundColor: white; } diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 0683a48d..bce0f059 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss
@@ -19,6 +19,12 @@ FlatButton { qproperty-foregroundColor: palette(text); } +FileItem { + qproperty-textColor: palette(text); + qproperty-backgroundColor: palette(base); + qproperty-iconColor: palette(window); +} + RaisedButton { qproperty-foregroundColor: palette(light); }