summaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-01 17:33:49 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-01 17:33:49 +0200
commit5573548fb1adbaef6ef8e30fd76855b90c0fe26c (patch)
tree2204a70a9de4c565ad9ab1c49a97ef90bc1e059d /resources
parent78353a29bce717b46a5aa720927abb88faa53f44 (diff)
Allow audio clip uploads
Diffstat (limited to 'resources')
-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 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);
}