diff --git a/resources/right_arrow.svg b/resources/right_arrow.svg new file mode 100644 index 0000000..4ab9fbd --- /dev/null +++ b/resources/right_arrow.svg @@ -0,0 +1,59 @@ + + + + + + + + + + diff --git a/resources/style.qss b/resources/style.qss index 805f8b9..5b4aaaa 100644 --- a/resources/style.qss +++ b/resources/style.qss @@ -145,6 +145,7 @@ QTreeView { } QTreeView QHeaderView::section { + color: white; background-color: #2b2b2b; border: 0; font-weight: 500; @@ -170,7 +171,18 @@ QTreeView QScrollBar:vertical { margin-top: 16px; } +QTreeView::branch:has-children:!has-siblings:closed, +QTreeView::branch:closed:has-children:has-siblings { + image: url("{IMAGE_PREFIX}/right_arrow.svg"); +} + +QTreeView::branch:open:has-children:!has-siblings, +QTreeView::branch:open:has-children:has-siblings { + image: url("{IMAGE_PREFIX}/down_arrow.svg"); +} + QTextBrowser { + color: white; background-color: #1a1a1a; selection-background-color: #1a73e8; } @@ -326,6 +338,10 @@ QScrollBar::sub-line:horizontal { subcontrol-origin: margin; } +QMessageBox QLabel { + color: white; +} + WrapCheckboxWidget { show-decoration-selected: 1; outline: 0;