1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-21 11:57:28 +01:00

Merge pull request #3640

7805430 Account, Receive, RemoteNodeList, SettingsNode: selection indicator in lists (rating89us)
This commit is contained in:
luigi1111 2021-07-26 15:37:26 -04:00
commit a13e4b622c
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
4 changed files with 29 additions and 2 deletions

View File

@ -61,6 +61,15 @@ ColumnLayout {
Layout.fillWidth: true
color: itemMouseArea.containsMouse || trustedDaemonCheckMark.labelMouseArea.containsMouse || index === remoteNodesModel.selected ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
Rectangle {
visible: index === remoteNodesModel.selected
Layout.fillHeight: true
anchors.top: parent.top
anchors.bottom: parent.bottom
color: "darkgrey"
width: 2
}
Rectangle {
color: MoneroComponents.Style.appWindowBorderColor
anchors.right: parent.right

View File

@ -196,6 +196,15 @@ Rectangle {
Layout.fillWidth: true
color: itemMouseArea.containsMouse || index === currentAccountIndex ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
Rectangle {
visible: index === currentAccountIndex
Layout.fillHeight: true
anchors.top: parent.top
anchors.bottom: parent.bottom
color: "darkgrey"
width: 2
}
Rectangle {
color: MoneroComponents.Style.appWindowBorderColor
anchors.right: parent.right

View File

@ -286,6 +286,15 @@ Rectangle {
Layout.fillWidth: true
color: itemMouseArea.containsMouse || index === appWindow.current_subaddress_table_index ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
Rectangle {
visible: index === appWindow.current_subaddress_table_index
Layout.fillHeight: true
anchors.top: parent.top
anchors.bottom: parent.bottom
color: "darkgrey"
width: 2
}
Rectangle{
anchors.right: parent.right
anchors.left: parent.left

View File

@ -72,7 +72,7 @@ Rectangle{
Layout.fillHeight: true
anchors.top: parent.top
anchors.bottom: parent.bottom
color: MoneroComponents.Style.blackTheme ? "white" : "darkgrey"
color: "darkgrey"
width: 2
}
@ -165,7 +165,7 @@ Rectangle{
Layout.fillHeight: true
anchors.top: parent.top
anchors.bottom: parent.bottom
color: MoneroComponents.Style.blackTheme ? "white" : "darkgrey"
color: "darkgrey"
width: 2
}