Skip to content
Binary file added data/themes/default/closed_branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/themes/default/open_branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions data/themes/default/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ QLabel, QTreeWidget, QListWidget, QGroupBox, QMenuBar {
color: #d1d8e4;
}

QTreeView {
outline: none;
}

QTreeWidget::item:hover,
QTreeWidget::branch:hover {
background-color: #3C444E;
}

QTreeWidget::item:selected,
QTreeWidget::branch:selected {
background-color: #17793b;
}

QTreeView::branch:has-children:open {
border-image: url("resources:open_branch.png") 0;
}

QTreeView::branch:has-children:closed {
border-image: url("resources:closed_branch.png") 0;
}

QMdiArea {
background-color: #111314;
}
Expand Down