summaryrefslogtreecommitdiff
path: root/src/stylesheets
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2019-05-19 11:02:35 -0500
committerLostDragonist <lost.dragonist@gmail.com>2019-05-19 11:02:35 -0500
commite10fa6e1f3e291144ffc0a953f81fff0fde17fac (patch)
tree51aedaf15e0761d7e87c2e861fc355f8fc6fc56f /src/stylesheets
parentb22ee0dc56fcf055088f86624c4f83aa194c2037 (diff)
Fix horizontal scrollbar width for dracula theme
Diffstat (limited to 'src/stylesheets')
-rw-r--r--src/stylesheets/dracula.qss8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss
index 385fca16..ac0119b0 100644
--- a/src/stylesheets/dracula.qss
+++ b/src/stylesheets/dracula.qss
@@ -280,12 +280,18 @@ QMenu::separator {
/*
* Scroll bar
*/
-QScrollBar {
+QScrollBar:vertical {
background-color: transparent;
margin: 0;
height: 1px;
width: 12px;
}
+QScrollBar:horizontal {
+ background-color: transparent;
+ margin: 0;
+ height: 12px;
+ width: 1px;
+}
QScrollBar::handle {
border: 1px solid #555555;
border-radius: 4px;