Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI improvements #32

Merged
merged 14 commits into from
Oct 1, 2019
Prev Previous commit
Next Next commit
UI changes
  • Loading branch information
rausi authored Sep 5, 2019
commit b7d3a4b5458852082db01486c621314492387972
21 changes: 20 additions & 1 deletion src/qt/res/css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,32 @@ QMessageBox {
QMessageBox QLabel {
color:#fff;
}
QMessageBox QButton {
QMessageBox QPushButton {
background: #2d374f;
color: #fff;
shadow: 3px;
border-radius: 5px;
padding: 8px;
}
QWidget {

color: #6d7886;
}
QTreeWidget {
background-color: #242c41;
alternate-background-color: #1b2234;
border: 0px;
}

QTreeWidget::Item {
border: 0px;
height: 20px;
border-style: solid;
border-color: #242c41;
}

QTreeWidget::Item::selected {
background: #2d374f;
color: white;
height: 80px;
}