mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-04 11:16:03 +00:00
LockScreen: replace ugly dots with better dots
This commit is contained in:
@@ -622,11 +622,21 @@ Loader {
|
||||
}
|
||||
}
|
||||
|
||||
NText {
|
||||
text: passwordInput.text.length > 0 ? "•".repeat(passwordInput.text.length) : ""
|
||||
color: passwordInput.text.length > 0 ? Color.mOnSurface : Color.mOnSurfaceVariant
|
||||
pointSize: Style.fontSizeXL * scaling
|
||||
opacity: passwordInput.text.length > 0 ? 1.0 : 0.6
|
||||
Row {
|
||||
spacing: 6 * scaling
|
||||
visible: passwordInput.text.length > 0
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
||||
Repeater {
|
||||
model: passwordInput.text.length
|
||||
|
||||
NIcon {
|
||||
icon: "circle-filled"
|
||||
pointSize: Style.fontSizeS * scaling
|
||||
color: Color.mOnSurface
|
||||
opacity: 1.0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
||||
Reference in New Issue
Block a user