From e29eb7113169e41e78213e00f95dfabd0f5e5cb4 Mon Sep 17 00:00:00 2001 From: morg Date: Wed, 30 Jun 2021 14:57:30 +0200 Subject: [PATCH] Add QToolButton + QMenu styles. Fixes #1464 --- qt/windows_dark.qss | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/qt/windows_dark.qss b/qt/windows_dark.qss index 86c264620..345bef3e2 100644 --- a/qt/windows_dark.qss +++ b/qt/windows_dark.qss @@ -138,7 +138,7 @@ QDialog QWidget::QLineEdit /* Buttons and combo boxes */ -QPushButton +QPushButton, QToolButton { padding: 3px; background-color: #404040; @@ -146,6 +146,23 @@ QPushButton color: white; } +QToolButton:hover +{ + background-color: #454545; +} + +QMenu +{ + background-color: #404040; + border: 1px solid #2e2e2e; + color: white; +} + +QMenu::item:selected +{ + background-color: #454545; +} + QComboBox { padding: 1px;