From 2fd1dc0ff980f037081921e12442b0e4c4373b6e Mon Sep 17 00:00:00 2001 From: rayanmargham Date: Sun, 30 Aug 2026 08:16:32 +0200 Subject: [PATCH] [qt] fix closing software dialog color (#4305) Signed-off-by: rayanmargham - [x] I have read and followed the [Contribution Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/CONTRIBUTING.md#code-contributions). - [x] I have read and followed the [AI Policy](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/AI.md) - [x] I have read and followed the [Coding Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/Coding.md) to the best of my ability. ------------------- This change fixes the closing software dialogue box having really grayish to white text on a white background making it impossible to read. This fixes default-dark giving it this look with the attached screenshot![image](/attachments/ad7dd13c-3808-4a0e-b29b-1a001a1106e0) Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4305 Reviewed-by: Lizzie and Samuel Reviewed-by: crueter --- dist/qt_themes/default/style.qss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/qt_themes/default/style.qss b/dist/qt_themes/default/style.qss index c56ca54ce3..8f3115b3af 100644 --- a/dist/qt_themes/default/style.qss +++ b/dist/qt_themes/default/style.qss @@ -509,6 +509,8 @@ QWidget#contentRichDialog QLabel#label_title_rich { } QWidget#contentDialog QLabel#label_dialog { + background: #2E2E2E; + padding: 20px 65px; }