Skip to content

Commit

Permalink
Firo-QT cosmetic fixes (firoorg#1425)
Browse files Browse the repository at this point in the history
* Resolved dropdown box sizing overlap

* UI fixes

* UI fixes for dark theme
  • Loading branch information
firstcryptoman authored Apr 16, 2024
1 parent c22505a commit 95622c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 6 additions & 2 deletions src/qt/res/css/firo.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ QComboBox::drop-down {
}

QComboBox::indicator {
background-color: #f4f4f4;
background-color: transparent;
selection-background-color: #3d3939;
color: #110202;
selection-color: #FFFFFF;
Expand All @@ -373,6 +373,7 @@ QComboBox QAbstractItemView::item {
QComboBox::item {
color: #110202;
font: 12pt 'Source Sans Pro';
max-height: 25px;
}

QComboBox::item:alternate {
Expand Down Expand Up @@ -819,7 +820,10 @@ QTableView::item:selected {
color: #FFFFFF;
font: 12pt 'Source Sans Pro';
}

/* QTreeView */
QTreeView::item {
color: #000000;
}
/* QTableWidget */

QTableWidget {
Expand Down

0 comments on commit 95622c6

Please sign in to comment.