From 7217a5fb39628a1540c79880001c21cd6ca5997b Mon Sep 17 00:00:00 2001 From: zhaoyingzhen Date: Fri, 9 Aug 2024 13:56:45 +0800 Subject: [PATCH] fix: appList group popup text cannot be seen clearly in dark mode as title Log: as title Issue: https://github.com/linuxdeepin/developer-center/issues/10157 --- qml/FolderGridViewPopup.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/FolderGridViewPopup.qml b/qml/FolderGridViewPopup.qml index c5092ceb..d38a877c 100644 --- a/qml/FolderGridViewPopup.qml +++ b/qml/FolderGridViewPopup.qml @@ -335,7 +335,7 @@ Popup { blurMultiplier: 5.0 backgroundColor: Palette { normal: Qt.rgba(1.0, 1.0, 1.0, 0.2) - normalDark: Qt.rgba(1.0, 1.0, 1.0, 0.2) + normalDark: Qt.rgba(20/255, 20/255, 20/255, 0.4) } dropShadowColor: null outsideBorderColor: isWindowedMode ? DStyle.Style.floatingPanel.outsideBorder : null