Index: lookandfeel/contents/logout/Logout.qml =================================================================== --- lookandfeel/contents/logout/Logout.qml +++ lookandfeel/contents/logout/Logout.qml @@ -159,46 +159,51 @@ Layout.alignment: Qt.AlignHCenter LogoutButton { id: suspendButton - iconSource: "system-suspend" + iconSource: "system-suspend-translucent" text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Suspend") + labelShadow: true action: root.sleepRequested KeyNavigation.left: logoutButton KeyNavigation.right: hibernateButton visible: spdMethods.SuspendState } LogoutButton { id: hibernateButton - iconSource: "system-suspend-hibernate" + iconSource: "system-suspend-hibernate-translucent" text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Hibernate") + labelShadow: true action: root.hibernateRequested KeyNavigation.left: suspendButton KeyNavigation.right: rebootButton visible: spdMethods.HibernateState } LogoutButton { id: rebootButton - iconSource: "system-reboot" + iconSource: "system-reboot-translucent" text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Reboot") + labelShadow: true action: root.rebootRequested KeyNavigation.left: hibernateButton KeyNavigation.right: shutdownButton focus: sdtype == ShutdownType.ShutdownTypeReboot visible: maysd } LogoutButton { id: shutdownButton - iconSource: "system-shutdown" + iconSource: "system-shutdown-translucent" text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Shut Down") + labelShadow: true action: root.haltRequested KeyNavigation.left: rebootButton KeyNavigation.right: logoutButton focus: sdtype == ShutdownType.ShutdownTypeHalt visible: maysd } LogoutButton { id: logoutButton - iconSource: "system-log-out" + iconSource: "system-log-out-translucent" text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Logout") + labelShadow: true action: root.logoutRequested KeyNavigation.left: shutdownButton KeyNavigation.right: suspendButton