- Update to version 0.0.34~git20241116: * VS: ignore opencv debug build guard (fix debug build) * ci: Don't fetch opencv submodule unless on windows * gitignore cleanup * added missing -p option * fixed CI for building on windows * Improve and fix sln solution * More constexpr * Fix warning * Add opencv to cmake * Move opencv submodule to subdirectoty * Qt: show warning if ps move tracking is not supported * Update vm_native.cpp * Progress Dialog: Fix recursion and concurrency use of text updates * Implement lf_array::for_each * Utilities\lockless.h: Flatten recusrion in lf_array * Fix compilation * Add HAVE_OPENCV preprocessor flag * Windows: Add and deploy opencv files * cellGem: implement real ps move handler * util/vm_native.cpp: Fix memory leak * overlays: localize RPCS3 progress dialog * overlays: get localized values in home menu settings * Qt: Add std::string GetSettingOptions * overlays: add more overlay hint option to home menu settings * overlays: remove unnecessary text logging * overlays: add input debug overlay to home menu settings * overlays: translate home menu settings * fix: cannot copy OpenAl32.dll with CMake OBS-URL: https://build.opensuse.org/package/show/Emulators/rpcs3?expand=0&rev=126
42 lines
2.3 KiB
Diff
42 lines
2.3 KiB
Diff
From: Hunter Wardlaw <hunterwardlaw@gmail.com>
|
|
Date: Wed, 02 Oct 2024 17:13:37 -0400
|
|
Subject: [PATCH] Fix toolbar text color in dark theme
|
|
|
|
---
|
|
rpcs3/rpcs3qt/stylesheets.h | 8 ++++++++--------
|
|
1 file changed, 8 insertion(+), 8 deletion(-)
|
|
|
|
diff --git a/rpcs3/rpcs3qt/stylesheets.h b/rpcs3/rpcs3qt/stylesheets.h
|
|
index 52367de..17a4597 100644
|
|
--- a/rpcs3/rpcs3qt/stylesheets.h
|
|
+++ b/rpcs3/rpcs3qt/stylesheets.h
|
|
@@ -9,20 +9,20 @@ namespace gui
|
|
const QString default_style_sheet
|
|
(
|
|
// main window toolbar search
|
|
- "QLineEdit#mw_searchbar { padding: 0 1em; background: #fdfdfd; selection-background-color: #148aff; margin: .8em; color:#000000; }"
|
|
+ //"QLineEdit#mw_searchbar { padding: 0 1em; background: #fdfdfd; selection-background-color: #148aff; margin: .8em; color:#000000; }"
|
|
|
|
// main window toolbar slider
|
|
- "QSlider#sizeSlider { color: #505050; background: #F0F0F0; }"
|
|
- "QSlider#sizeSlider::handle:horizontal { border: 0em smooth rgba(227, 227, 227, 255); border-radius: .58em; background: #404040; width: 1.2em; margin: -.5em 0; }"
|
|
- "QSlider#sizeSlider::groove:horizontal { border-radius: .15em; background: #5b5b5b; height: .3em; }"
|
|
+ //"QSlider#sizeSlider { color: #505050; background: #F0F0F0; }"
|
|
+ //"QSlider#sizeSlider::handle:horizontal { border: 0em smooth rgba(227, 227, 227, 255); border-radius: .58em; background: #404040; width: 1.2em; margin: -.5em 0; }"
|
|
+ //"QSlider#sizeSlider::groove:horizontal { border-radius: .15em; background: #5b5b5b; height: .3em; }"
|
|
|
|
// main window toolbar
|
|
- "QToolBar#mw_toolbar { background-color: #F0F0F0; border: none; }"
|
|
- "QToolBar#mw_toolbar::separator { background-color: rgba(207, 207, 207, 235); width: 0.125em; margin-top: 0.250em; margin-bottom: 0.250em; }"
|
|
- "QToolButton:disabled { color: #787878; }"
|
|
+ //"QToolBar#mw_toolbar { color: #505050; background-color: #F0F0F0; border: none; }"
|
|
+ //"QToolBar#mw_toolbar::separator { background-color: rgba(207, 207, 207, 235); width: 0.125em; margin-top: 0.250em; margin-bottom: 0.250em; }"
|
|
+ //"QToolButton:disabled { color: #787878; }"
|
|
|
|
// main window toolbar icon color
|
|
- "QLabel#toolbar_icon_color { color: #5b5b5b; }"
|
|
+ //"QLabel#toolbar_icon_color { color: #5b5b5b; }"
|
|
|
|
// thumbnail icon color
|
|
"QLabel#thumbnail_icon_color { color: rgba(0, 100, 231, 255); }"
|