mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 17:02:57 +02:00
diff minimize
This commit is contained in:
parent
9d5f392be3
commit
aa164bbf8f
1 changed files with 4 additions and 4 deletions
|
@ -58,14 +58,14 @@ Column {
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: shadow
|
id: shadow
|
||||||
width: frame ? frame.width: 480
|
width: frame.width
|
||||||
height: 1
|
height: 1
|
||||||
color: hifi.colors.baseGrayShadow
|
color: hifi.colors.baseGrayShadow
|
||||||
x: -hifi.dimensions.contentMargin.x
|
x: -hifi.dimensions.contentMargin.x
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: frame ? frame.width : 480
|
width: frame.width
|
||||||
height: 1
|
height: 1
|
||||||
color: hifi.colors.baseGrayHighlight
|
color: hifi.colors.baseGrayHighlight
|
||||||
x: -hifi.dimensions.contentMargin.x
|
x: -hifi.dimensions.contentMargin.x
|
||||||
|
@ -121,8 +121,8 @@ Column {
|
||||||
|
|
||||||
LinearGradient {
|
LinearGradient {
|
||||||
id: bottomBar
|
id: bottomBar
|
||||||
visible: (desktop ? desktop.gradientsSupported : false) && isCollapsible
|
visible: desktop.gradientsSupported && isCollapsible
|
||||||
width: (frame ? frame.width : 480)
|
width: frame.width
|
||||||
height: visible ? 4 : 0
|
height: visible ? 4 : 0
|
||||||
x: -hifi.dimensions.contentMargin.x
|
x: -hifi.dimensions.contentMargin.x
|
||||||
anchors.top: heading.bottom
|
anchors.top: heading.bottom
|
||||||
|
|
Loading…
Reference in a new issue