Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Password Reveal Overlap Issue #4

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/Footer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,14 @@ Item {
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
color: "#EEE" //Logic.cfgFontColor
text : Qt.formatTime(dateTime, "hh:mm")
//24 HOUR CLOCK
//text : Qt.formatTime(dateTime, "hh:mm")
//12 HOUR CLOCK
text : Qt.formatTime(dateTime, "hh:mm a")
font.pointSize: 12 * Logic.cfgFontScale
font.family: Logic.cfgFontFamily
}
}
}
}
}
}
10 changes: 7 additions & 3 deletions src/LoginBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,17 @@ Item {
}
Text {
id: passPrompt
text: (userName == "") ? "[Select user]" : "[Password for %1]".arg(userName)
anchors.fill: parent
//MULTIPLE USERS
//text: (userName == "") ? "[Select user]" : "[Password for %1]".arg(userName)
//SINGLE USER
text: "[Enter Password]"
color: "#55FFFFFF"
clip: true
font.pointSize: 12 * Logic.cfgFontScale
font.family: Logic.cfgFontFamily
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
//ADJUST TO WORK WITH YOUR SCREEN RESOLUTION
anchors.leftMargin: ico.width * 1.5
opacity: (passwdInput.focus && passwdInput.text === "")
Behavior on opacity {
NumberAnimation { duration: 200 }
Expand Down