diff --git a/Login.qml b/Login.qml index a9fdeb8..9003cc7 100644 --- a/Login.qml +++ b/Login.qml @@ -100,7 +100,7 @@ SessionManagementScreen { id: passwordBox x: -470 y: 248 - width: 945 + width: 825 font.pointSize: fontSize + 20 Layout.fillWidth: false @@ -150,19 +150,26 @@ SessionManagementScreen { } } - PlasmaComponents3.Button { - id: loginButton - visible: false - Accessible.name: i18nd("plasma-desktop-sddm-theme", "Log In") - Layout.preferredHeight: passwordBox.implicitHeight - Layout.preferredWidth: text.length === 0 ? loginButton.Layout.preferredHeight : -1 + Rectangle { + PlasmaComponents3.Button { + id: loginButton + x: 370 + y: 238 + width: 105 + height: 73 + Accessible.name: i18nd("plasma-desktop-sddm-theme", "Log In") + Layout.preferredHeight: passwordBox.implicitHeight + Layout.preferredWidth: text.length === 0 ? loginButton.Layout.preferredHeight : -1 - icon.name: text.length === 0 ? (root.LayoutMirroring.enabled ? "go-previous" : "go-next") : "" + background: Rectangle { + color: "transparent" + } - text: root.showUsernamePrompt || userList.currentItem.needsPassword ? "" : i18n("Log In") - onClicked: startLogin() - Keys.onEnterPressed: clicked() - Keys.onReturnPressed: clicked() + text: root.showUsernamePrompt || userList.currentItem.needsPassword ? "" : i18n("Log In") + onClicked: startLogin() + Keys.onEnterPressed: clicked() + Keys.onReturnPressed: clicked() + } } } } diff --git a/background.png b/background.png index 91d7da7..b986578 100644 Binary files a/background.png and b/background.png differ