mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 12:42:58 +02:00
checkbox margin and nav hover color
This commit is contained in:
parent
10a82ac11f
commit
834e3af879
2 changed files with 7 additions and 1 deletions
|
@ -50,6 +50,9 @@ Item {
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
onEntered: iconColorOverlay.color = "#1fc6a6";
|
||||||
|
onExited: iconColorOverlay.color = "#ffffff";
|
||||||
// navigate back to root level menu
|
// navigate back to root level menu
|
||||||
onClicked: buildMenu();
|
onClicked: buildMenu();
|
||||||
}
|
}
|
||||||
|
@ -72,6 +75,9 @@ Item {
|
||||||
anchors.leftMargin: 15
|
anchors.leftMargin: 15
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
onEntered: breadcrumbText.color = "#1fc6a6";
|
||||||
|
onExited: breadcrumbText.color = "#ffffff";
|
||||||
// navigate back to parent level menu
|
// navigate back to parent level menu
|
||||||
onClicked: menuPopperUpper.closeLastMenu();
|
onClicked: menuPopperUpper.closeLastMenu();
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ Item {
|
||||||
// FIXME: Should use radio buttons if source.exclusiveGroup.
|
// FIXME: Should use radio buttons if source.exclusiveGroup.
|
||||||
anchors {
|
anchors {
|
||||||
left: parent.left
|
left: parent.left
|
||||||
leftMargin: hifi.dimensions.menuPadding.x
|
leftMargin: hifi.dimensions.menuPadding.x + 15
|
||||||
top: label.top
|
top: label.top
|
||||||
topMargin: 0
|
topMargin: 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue