mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 17:03: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 {
|
||||
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();
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue