Fix combobox dropdown arrow styling on Windows dark mode

This commit is contained in:
pax 2026-04-05 21:48:58 -05:00
parent 1aba26aa81
commit 76acb8bb67

View File

@ -2225,6 +2225,17 @@ def _apply_windows_dark_mode(app: QApplication) -> None:
border-radius: 2px; border-radius: 2px;
padding: 3px 6px; padding: 3px 6px;
} }
QComboBox::drop-down {
border: none;
width: 20px;
}
QComboBox::down-arrow {
image: none;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid #aaa;
margin-right: 6px;
}
QSpinBox { QSpinBox {
border: 1px solid #555; border: 1px solid #555;
border-radius: 2px; border-radius: 2px;