summaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-05 14:13:26 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-05 14:13:26 +0200
commit6415c4125f296c3d32946c1ea66256f1dad0a1eb (patch)
tree5f677cc5fcf2f2ed253d0e9605d43ce67c8af072 /resources
parentd6e6ec25817cd670cd2713906c488b3e3a41003d (diff)
Add style colors for the ScrollBar
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 8610c445..84e21f8a 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -117,3 +117,8 @@ QTextEdit {
background-color: #383c4a;
color: #caccd1;
}
+
+ScrollBar {
+ qproperty-handleColor: #caccd1;
+ qproperty-backgroundColor: #383c4e;
+}
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 55f9a4f4..115e4a2a 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -108,3 +108,8 @@ FloatingButton {
qproperty-backgroundColor: #efefef;
qproperty-foregroundColor: black;
}
+
+ScrollBar {
+ qproperty-handleColor: #ccc;
+ qproperty-backgroundColor: #efefef;
+}
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index bb24b7a6..cc54402f 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -84,3 +84,8 @@ QTextEdit,
QLineEdit {
background-color: palette(window);
}
+
+ScrollBar {
+ qproperty-handleColor: palette(text);
+ qproperty-backgroundColor: palette(window);
+}