diff --git a/lookandfeel/contents/components/ActionButton.qml b/lookandfeel/contents/components/ActionButton.qml --- a/lookandfeel/contents/components/ActionButton.qml +++ b/lookandfeel/contents/components/ActionButton.qml @@ -48,8 +48,10 @@ colorGroup: PlasmaCore.ColorScope.colorGroup active: mouseArea.containsMouse || root.activeFocus } + PlasmaComponents.Label { id: label + font.pointSize: 11 anchors { top: icon.bottom topMargin: units.smallSpacing diff --git a/lookandfeel/contents/components/UserDelegate.qml b/lookandfeel/contents/components/UserDelegate.qml --- a/lookandfeel/contents/components/UserDelegate.qml +++ b/lookandfeel/contents/components/UserDelegate.qml @@ -41,7 +41,7 @@ property bool constrainText: true signal clicked() - property real faceSize: Math.min(width, height - usernameDelegate.height - units.largeSpacing) + property real faceSize: Math.min(width, height - usernameDelegate.height - units.smallSpacing) opacity: isCurrent ? 1.0 : 0.5 @@ -65,7 +65,11 @@ Item { id: imageSource - anchors.horizontalCenter: parent.horizontalCenter + anchors { + bottom: usernameDelegate.top + bottomMargin: units.largeSpacing + horizontalCenter: parent.horizontalCenter + } width: faceSize height: faceSize @@ -89,8 +93,11 @@ } ShaderEffect { - anchors.top: parent.top - anchors.horizontalCenter: parent.horizontalCenter + anchors { + bottom: usernameDelegate.top + bottomMargin: units.largeSpacing + horizontalCenter: parent.horizontalCenter + } width: imageSource.width height: imageSource.height @@ -162,6 +169,7 @@ PlasmaComponents.Label { id: usernameDelegate + font.pointSize: 12 anchors { bottom: parent.bottom horizontalCenter: parent.horizontalCenter diff --git a/lookandfeel/contents/lockscreen/MainBlock.qml b/lookandfeel/contents/lockscreen/MainBlock.qml --- a/lookandfeel/contents/lockscreen/MainBlock.qml +++ b/lookandfeel/contents/lockscreen/MainBlock.qml @@ -53,6 +53,7 @@ PlasmaComponents.TextField { id: passwordBox + font.pointSize: 11 Layout.fillWidth: true placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Password") @@ -92,6 +93,7 @@ PlasmaComponents.Button { id: loginButton + font.pointSize: 11 Layout.fillWidth: true text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Unlock") diff --git a/sddm-theme/Login.qml b/sddm-theme/Login.qml --- a/sddm-theme/Login.qml +++ b/sddm-theme/Login.qml @@ -44,6 +44,7 @@ PlasmaComponents.TextField { id: userNameInput + font.pointSize: 11 Layout.fillWidth: true text: lastUserName @@ -59,6 +60,7 @@ PlasmaComponents.TextField { id: passwordBox + font.pointSize: 11 Layout.fillWidth: true placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Password") @@ -99,6 +101,7 @@ } PlasmaComponents.Button { id: loginButton + font.pointSize: 11 Layout.fillWidth: true text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Log In")