diff minimize

This commit is contained in:
Dante Ruiz 2017-02-14 15:55:32 +00:00
parent 9d5f392be3
commit aa164bbf8f

View file

@ -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