summaryrefslogtreecommitdiffstats
path: root/resources/styles/nheko-dark.qss
diff options
context:
space:
mode:
authorAdasauce <adasauce@with.parts>2020-02-21 15:16:53 -0400
committerAdasauce <adasauce@with.parts>2020-02-21 15:38:19 -0400
commit6e6fe0cad2f5f927db26febd4b5c8e07e1106c7e (patch)
treed5b2c81496df8b1a4beb1dc3d37037980af8dba4 /resources/styles/nheko-dark.qss
parentfa829bebd09e015e6696a2428137fac3f1eb29cc (diff)
remove setStyleSheet calls directly from widget code
removed from: - emoji panel scrollbars - emoji category labels - splitter image handles - textfield setTextColor impl small change to the category separator label for better contrast / readability in dark mode. removed setTextColor completely from TextField. Doesn't appear to be in use anywhere, and focus going more toward qss themeing from qproperty setting.
Diffstat (limited to 'resources/styles/nheko-dark.qss')
-rw-r--r--resources/styles/nheko-dark.qss11
1 files changed, 10 insertions, 1 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 8597eccb..33e8e150 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -52,11 +52,18 @@ dialogs--JoinRoom > QLineEdit {
color: #caccd1;
}
+emoji--Panel QWidget { border: none; }
+emoji--Panel QScrollBar:vertical { width: 0px; margin: 0px; }
+emoji--Panel QScrollBar::handle:vertical { min-height: 30px; }
+
emoji--Category,
emoji--Category > * {
background-color: #2d3139;
- color: #caccd1;
+ color: #727274;
+}
+emoji--Category QLabel {
+ margin: 20px 0 20px 8px;
}
TimelineItem {
@@ -237,3 +244,5 @@ SnackBar {
qproperty-textColor: #caccd1;
qproperty-bgColor: #202228;
}
+
+QSplitter::handle { image: none; }