mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 12:46:44 +00:00
added slight gradient on top bar
This commit is contained in:
parent
442b9cfc7a
commit
4486608a26
1 changed files with 5 additions and 1 deletions
|
|
@ -1067,7 +1067,6 @@ ApplicationWindow {
|
||||||
right: parent.right
|
right: parent.right
|
||||||
}
|
}
|
||||||
height: 37
|
height: 37
|
||||||
color: "transparent"
|
|
||||||
z: 100
|
z: 100
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|
@ -1083,6 +1082,11 @@ ApplicationWindow {
|
||||||
root.y += (mouseY - lastMouseY)
|
root.y += (mouseY - lastMouseY)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gradient: Gradient {
|
||||||
|
GradientStop { position: 0.0; color: "#FFFFFFFF" }
|
||||||
|
GradientStop { position: 1.0; color: "#00FFFFFF" }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue