checkbox margin and nav hover color

This commit is contained in:
Faye Li Si Fi 2017-01-12 18:12:13 -08:00
parent 10a82ac11f
commit 834e3af879
2 changed files with 7 additions and 1 deletions

View file

@ -50,6 +50,9 @@ Item {
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: iconColorOverlay.color = "#1fc6a6";
onExited: iconColorOverlay.color = "#ffffff";
// navigate back to root level menu
onClicked: buildMenu();
}
@ -72,6 +75,9 @@ Item {
anchors.leftMargin: 15
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: breadcrumbText.color = "#1fc6a6";
onExited: breadcrumbText.color = "#ffffff";
// navigate back to parent level menu
onClicked: menuPopperUpper.closeLastMenu();
}

View file

@ -31,7 +31,7 @@ Item {
// FIXME: Should use radio buttons if source.exclusiveGroup.
anchors {
left: parent.left
leftMargin: hifi.dimensions.menuPadding.x
leftMargin: hifi.dimensions.menuPadding.x + 15
top: label.top
topMargin: 0
}