summary refs log tree commit diff
path: root/resources/styles
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-25 23:07:56 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-25 23:07:56 +0300
commit1f47a6af3a1c09e18ce49b67a635be981557a6e0 (patch)
tree20e00db7e8bc9315642b12890770ee170517f05d /resources/styles
parentEnable scrollbar on the room list for macOS (#174) (diff)
downloadnheko-1f47a6af3a1c09e18ce49b67a635be981557a6e0.tar.xz
Improve the style of snackbar a bit
Diffstat (limited to 'resources/styles')
-rw-r--r--resources/styles/nheko-dark.qss5
-rw-r--r--resources/styles/nheko.qss5
-rw-r--r--resources/styles/system.qss10
3 files changed, 20 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 7caa7efb..5c8fc976 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -233,3 +233,8 @@ Toggle {
     qproperty-inactiveColor: gray;
     qproperty-trackColor: rgb(240, 240, 240);
 }
+
+SnackBar {
+    qproperty-textColor: #caccd1;
+    qproperty-bgColor: #202228;
+}
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 3f06f79f..7184dbfb 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -221,3 +221,8 @@ Toggle {
     qproperty-inactiveColor: gray;
     qproperty-trackColor: rgb(240, 240, 240);
 }
+
+SnackBar {
+    qproperty-textColor: white;
+    qproperty-bgColor: #495057;
+}
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 7a90e039..7dc37418 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -14,6 +14,11 @@ OverlayWidget > * {
     border-left: 1px solid palette(text);
 }
 
+TopRoomBar {
+    qproperty-borderColor: palette(text);
+    border: none;
+}
+
 TimelineView,
 TimelineView > *,
 TimelineItem,
@@ -150,3 +155,8 @@ QListWidget {
     background-color: palette(window);
     color: palette(text);
 }
+
+SnackBar {
+    qproperty-textColor: palette(text);
+    qproperty-bgColor: palette(base);
+}