From 042606c8cb0fc19eb9ec9fcb0a9f7395e67757af Mon Sep 17 00:00:00 2001 From: Gustavo Graziano Date: Tue, 12 May 2026 13:55:23 -0300 Subject: [PATCH 1/5] I made some visual improvements to some components I made improvements to highlight the default QDialog button, added color to the left side of the QSlider, and slightly spaced out the items in the QComboBox. --- ...dows 11 (Dark Mode) by GustavoGraziano.qss | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss b/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss index c93a1bb11e..f26d6e5c65 100644 --- a/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss +++ b/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss @@ -349,24 +349,24 @@ QPushButton:disabled { } -QDialog QDialogButtonBox QPushButton { +QDialog QDialogButtonBox QPushButton:default { color: #000000; background-color: #4CC2FF; border-color: #5AC7FF; } -QDialog QDialogButtonBox QPushButton:hover { +QDialog QDialogButtonBox QPushButton:default:hover { background-color: #48B2E9; border-color: #56B8EB; } -QDialog QDialogButtonBox QPushButton:pressed { +QDialog QDialogButtonBox QPushButton:default:pressed { color: #22526A; background-color: #45A4D5; border-color: #45A4D5; } -QDialog QDialogButtonBox QPushButton:disabled { +QDialog QDialogButtonBox QPushButton:default:disabled { color: #ABABAB; background-color: #4C4C4C; border-color: #4C4C4C; @@ -614,6 +614,7 @@ QComboBox QAbstractItemView { QComboBox QAbstractItemView::item { color: #FFFFFF; padding: 4px 6px; + margin: 2px 0px; background-color: transparent; border-radius: 4px; } @@ -646,7 +647,7 @@ QDoubleSpinBox::up-button, QDoubleSpinBox::down-button { border-radius: 4px; width: 8px; height: 8px; - padding: 3px 4px; + padding: 3px 4px; } QSpinBox::up-button:hover, QSpinBox::down-button:hover, @@ -713,6 +714,16 @@ QSlider::handle:horizontal:disabled { image: url("GuiConfigs/dark/slider-handle-disabled.svg"); } +QSlider::sub-page:horizontal { + background-color: #4CC2FF; + border-radius: 2px; + height: 4px; +} + +QSlider::sub-page:horizontal:disabled { + background-color: #767A7D; +} + /* LINE EDIT */ QLineEdit { From 8c750a770a9f46a3f06a266d0f678a9ae06316e3 Mon Sep 17 00:00:00 2001 From: Gustavo Graziano Date: Tue, 12 May 2026 13:56:55 -0300 Subject: [PATCH 2/5] I made some visual improvements to some components I made improvements to highlight the default QDialog button, added a color to the left side of the QSlider, and slightly spaced out the items in the QComboBox --- ...ows 11 (Light Mode) by GustavoGraziano.qss | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss b/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss index f279bd0570..2bfaf2a06a 100644 --- a/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss +++ b/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss @@ -349,24 +349,24 @@ QPushButton:disabled { } -QDialog QDialogButtonBox QPushButton { +QDialog QDialogButtonBox QPushButton:default { color: #FFFFFF; background-color: #0067C0; border-color: #1473C5; } -QDialog QDialogButtonBox QPushButton:hover { +QDialog QDialogButtonBox QPushButton:default:hover { background-color: #1A76C6; border-color: #2C80CA; } -QDialog QDialogButtonBox QPushButton:pressed { +QDialog QDialogButtonBox QPushButton:default:pressed { color: #C2DAEF; background-color: #3284CB; border-color: #3284CB; } -QDialog QDialogButtonBox QPushButton:disabled { +QDialog QDialogButtonBox QPushButton:default:disabled { color: #FFFFFF; background-color: #C5C5C5; border-color: #C5C5C5; @@ -614,6 +614,7 @@ QComboBox QAbstractItemView { QComboBox QAbstractItemView::item { color: #1B1B1B; padding: 4px 6px; + margin: 2px 0px; background-color: transparent; border-radius: 4px; } @@ -646,7 +647,7 @@ QDoubleSpinBox::up-button, QDoubleSpinBox::down-button { border-radius: 4px; width: 8px; height: 8px; - padding: 3px 4px; + padding: 3px 4px; } QSpinBox::up-button:hover, QSpinBox::down-button:hover, @@ -713,6 +714,16 @@ QSlider::handle:horizontal:disabled { image: url("GuiConfigs/light/slider-handle-disabled.svg"); } +QSlider::sub-page:horizontal { + background-color: #1A76C6; + border-radius: 2px; + height: 4px; +} + +QSlider::sub-page:horizontal:disabled { + background-color: #868788; +} + /* LINE EDIT */ QLineEdit { From 78df24024e74fcc4aad364eca6faacd6e64eaa2b Mon Sep 17 00:00:00 2001 From: Gustavo Graziano Date: Tue, 12 May 2026 14:01:24 -0300 Subject: [PATCH 3/5] Change hover background color in QComboBox --- bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss b/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss index f26d6e5c65..1dd9f75b23 100644 --- a/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss +++ b/bin/GuiConfigs/Windows 11 (Dark Mode) by GustavoGraziano.qss @@ -620,7 +620,7 @@ QComboBox QAbstractItemView::item { } QComboBox QAbstractItemView::item:hover { - background-color: #343434; + background-color: #383838; } QComboBox QAbstractItemView::item:selected { From d7b425236724ca1b3c92f4d9a8f2ff657028a136 Mon Sep 17 00:00:00 2001 From: Gustavo Graziano Date: Tue, 12 May 2026 14:01:48 -0300 Subject: [PATCH 4/5] Change hover background color in QComboBox --- bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss b/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss index 2bfaf2a06a..f1ce57d2fe 100644 --- a/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss +++ b/bin/GuiConfigs/Windows 11 (Light Mode) by GustavoGraziano.qss @@ -620,7 +620,7 @@ QComboBox QAbstractItemView::item { } QComboBox QAbstractItemView::item:hover { - background-color: #F3F3F3; + background-color: #F0F0F0; } QComboBox QAbstractItemView::item:selected { From 10feb18c1cea8d78ca56bdc56905c910cf9fc667 Mon Sep 17 00:00:00 2001 From: Gustavo Graziano Date: Tue, 12 May 2026 16:16:50 -0300 Subject: [PATCH 5/5] Fix formatting in account creation confirmation dialog --- rpcs3/rpcs3qt/rpcn_settings_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/rpcn_settings_dialog.cpp b/rpcs3/rpcs3qt/rpcn_settings_dialog.cpp index cab71be3bc..802a9b1e50 100644 --- a/rpcs3/rpcs3qt/rpcn_settings_dialog.cpp +++ b/rpcs3/rpcs3qt/rpcn_settings_dialog.cpp @@ -289,7 +289,7 @@ rpcn_account_dialog::rpcn_account_dialog(QWidget* parent) if (!email) return; - if (QMessageBox::question(this, tr("RPCN: Account Creation"), tr("You are about to create an account with:\n-Username:%0\n-Email:%1\n\nIs this correct?").arg(QString::fromStdString(*username)).arg(QString::fromStdString(*email))) != QMessageBox::Yes) + if (QMessageBox::question(this, tr("RPCN: Account Creation"), tr("You are about to create an account with:\n-Username: %0\n-Email: %1\n\nIs this correct?").arg(QString::fromStdString(*username)).arg(QString::fromStdString(*email))) != QMessageBox::Yes) return; {