mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-15 17:57:27 -04:00
account/receive: highlight background and text of selected item
This commit is contained in:
@@ -107,7 +107,7 @@ Rectangle {
|
||||
height: subaddressListRow.subaddressListItemHeight
|
||||
width: parent ? parent.width : undefined
|
||||
Layout.fillWidth: true
|
||||
color: "transparent"
|
||||
color: itemMouseArea.containsMouse || index === appWindow.current_subaddress_table_index ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
|
||||
|
||||
Rectangle{
|
||||
anchors.right: parent.right
|
||||
@@ -143,7 +143,7 @@ Rectangle {
|
||||
|
||||
MoneroComponents.Label {
|
||||
id: nameLabel
|
||||
color: MoneroComponents.Style.dimmedFontColor
|
||||
color: index === appWindow.current_subaddress_table_index ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
anchors.left: idLabel.right
|
||||
anchors.leftMargin: 6
|
||||
@@ -167,11 +167,10 @@ Rectangle {
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
id: itemMouseArea
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
anchors.fill: parent
|
||||
hoverEnabled: true
|
||||
onEntered: tableItem2.color = MoneroComponents.Style.titleBarButtonHoverColor
|
||||
onExited: tableItem2.color = "transparent"
|
||||
onClicked: subaddressListView.currentIndex = index;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user