diff --git a/src/gui/tray/UserLine.qml b/src/gui/tray/UserLine.qml index ead5ef7ac87b3..ea2d222b1574d 100644 --- a/src/gui/tray/UserLine.qml +++ b/src/gui/tray/UserLine.qml @@ -62,7 +62,6 @@ AbstractButton { height: width anchors.bottom: accountAvatar.bottom anchors.right: accountAvatar.right - color: userLine.hovered || userLine.visualFocus ? "#f6f6f6" : "white" radius: width*0.5 } @@ -149,7 +148,7 @@ AbstractButton { Image { anchors.fill: parent - source: "image://svgimage-custom-color/more.svg" + "/" + palette.buttonText + source: "image://svgimage-custom-color/more.svg/" fillMode: Image.PreserveAspectFit } @@ -175,16 +174,6 @@ AbstractButton { accountMenu.close() } - background: Item { - height: parent.height - width: parent.menu.width - Rectangle { - anchors.fill: parent - anchors.margins: 1 - color: parent.parent.hovered ? palette.highlight : palette.window - } - } - Accessible.role: Accessible.Button Accessible.name: model.isConnected ? qsTr("Log out") : qsTr("Log in") @@ -208,16 +197,6 @@ AbstractButton { accountMenu.close() } - background: Item { - height: parent.height - width: parent.menu.width - Rectangle { - anchors.fill: parent - anchors.margins: 1 - color: parent.parent.hovered ? palette.highlight : palette.window - } - } - Accessible.role: Accessible.Button Accessible.name: text Accessible.onPressAction: removeAccountButton.clicked()