Skip to content

Commit

Permalink
fix: delete boot menu background color
Browse files Browse the repository at this point in the history
delete boot menu background color

Log: delete boot menu background color
pms: BUG-297215
  • Loading branch information
swq authored and swq11 committed Dec 27, 2024
1 parent 6f8a4e6 commit f820ca7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/plugin-commoninfo/qml/BootPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ DccObject {
Layout.fillWidth: true
width: parent.width
radius: 8
color: "transparent"

Row {
id: aniRoot
Expand All @@ -497,14 +498,16 @@ DccObject {
border.color: "#6A005BFF"
radius: 8

color: "transparent"

Rectangle {
id: imgRect
anchors.centerIn: parent
width: 220
height: 140
border.width: 1
border.color: "#1A000000"
color: "#1A0065FF"
color: "transparent"
radius: 6

Image {
Expand All @@ -527,7 +530,7 @@ DccObject {
radius: 6 // 设置圆角半径
visible: model.startAnimation
&& model.checkStatus
color: "#1A0065FF"
color: "transparent"

// GaussianBlur 模糊效果
ShaderEffectSource {
Expand Down

0 comments on commit f820ca7

Please sign in to comment.