diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-12-01 17:33:49 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-12-01 17:33:49 +0200 |
commit | 5573548fb1adbaef6ef8e30fd76855b90c0fe26c (patch) | |
tree | 2204a70a9de4c565ad9ab1c49a97ef90bc1e059d /resources/styles | |
parent | Install qt-multimedia on travis (diff) | |
download | nheko-5573548fb1adbaef6ef8e30fd76855b90c0fe26c.tar.xz |
Allow audio clip uploads
Diffstat (limited to 'resources/styles')
-rw-r--r-- | resources/styles/nheko-dark.qss | 6 | ||||
-rw-r--r-- | resources/styles/nheko.qss | 6 | ||||
-rw-r--r-- | resources/styles/system.qss | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss index 0182d7a3..8610c445 100644 --- a/resources/styles/nheko-dark.qss +++ b/resources/styles/nheko-dark.qss @@ -28,6 +28,12 @@ FileItem { qproperty-iconColor: #caccd1; } +AudioItem { + 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 4251b4a5..55f9a4f4 100644 --- a/resources/styles/nheko.qss +++ b/resources/styles/nheko.qss @@ -27,6 +27,12 @@ FileItem { qproperty-iconColor: white; } +AudioItem { + 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 4cd1bbfe..bb24b7a6 100644 --- a/resources/styles/system.qss +++ b/resources/styles/system.qss @@ -25,6 +25,12 @@ FileItem { qproperty-iconColor: palette(window); } +AudioItem { + qproperty-textColor: palette(text); + qproperty-backgroundColor: palette(base); + qproperty-iconColor: palette(window); +} + RaisedButton { qproperty-foregroundColor: palette(light); } |