From 0d826269ccf683e065c5b81067e7a363cdebfca2 Mon Sep 17 00:00:00 2001 From: firstcryptoman Date: Fri, 22 Mar 2024 17:02:22 +0400 Subject: [PATCH 1/3] Resolved dropdown box sizing overlap --- src/qt/res/css/firo.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qt/res/css/firo.css b/src/qt/res/css/firo.css index ddb8c583e6..7e9f41040e 100644 --- a/src/qt/res/css/firo.css +++ b/src/qt/res/css/firo.css @@ -351,7 +351,7 @@ QComboBox::drop-down { } QComboBox::indicator { - background-color: #f4f4f4; + background-color: transparent; selection-background-color: #3d3939; color: #110202; selection-color: #FFFFFF; @@ -373,6 +373,7 @@ QComboBox QAbstractItemView::item { QComboBox::item { color: #110202; font: 12pt 'Source Sans Pro'; + max-height: 25px; } QComboBox::item:alternate { From f78855ed00f210e159e09557e5b33cec23f9d40f Mon Sep 17 00:00:00 2001 From: firstcryptoman Date: Thu, 28 Mar 2024 01:32:35 +0400 Subject: [PATCH 2/3] UI fixes --- src/qt/bitcoingui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index b1ac1c059c..7e1096e776 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -477,6 +477,7 @@ void BitcoinGUI::createMenuBar() #else // Get the main window's menu bar on other platforms appMenuBar = menuBar(); + appMenuBar->setStyleSheet("QMenuBar::item { color: #000000; }"); #endif // Configure the menus From a1e61d4728e1e109ce7ca5a2bd5f3cc762964072 Mon Sep 17 00:00:00 2001 From: firstcryptoman Date: Sat, 6 Apr 2024 16:23:51 +0400 Subject: [PATCH 3/3] UI fixes for dark theme --- src/qt/res/css/firo.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qt/res/css/firo.css b/src/qt/res/css/firo.css index 7e9f41040e..27afcf4324 100644 --- a/src/qt/res/css/firo.css +++ b/src/qt/res/css/firo.css @@ -820,7 +820,10 @@ QTableView::item:selected { color: #FFFFFF; font: 12pt 'Source Sans Pro'; } - +/* QTreeView */ +QTreeView::item { + color: #000000; +} /* QTableWidget */ QTableWidget {