Launcher: nicer looking summary transparency
This commit is contained in:
parent
bb0ba31fe0
commit
7ae8137b77
1 changed files with 12 additions and 4 deletions
|
@ -104,13 +104,12 @@ Item {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
Rectangle {
|
||||
id: summaryPanel
|
||||
|
||||
color: "white"
|
||||
opacity: Style.panelOpacity
|
||||
// radius: Style.roundRadius
|
||||
border.width: 2
|
||||
color: "transparent"
|
||||
border.width: 1
|
||||
border.color: Style.frameColor
|
||||
|
||||
anchors {
|
||||
|
@ -122,6 +121,15 @@ Item {
|
|||
|
||||
height: summaryGrid.height + Style.margin * 2
|
||||
|
||||
// set opacity here only, so we don't make the whole summary pannel translucent
|
||||
Rectangle {
|
||||
id: background
|
||||
anchors.fill: parent
|
||||
z: -1
|
||||
opacity: Style.panelOpacity
|
||||
color: "white"
|
||||
}
|
||||
|
||||
Grid {
|
||||
id: summaryGrid
|
||||
columns: 3
|
||||
|
|
Loading…
Add table
Reference in a new issue