Merge pull request #109 from keepassxreboot/password_gen_fixes

Password generator fixes
This commit is contained in:
Janek Bevendorff 2018-05-08 20:50:15 +02:00 committed by GitHub
commit 20e7fda98e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View file

@ -18,6 +18,7 @@
.kpxc .ui-dialog {
font-size: 12px !important;
box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
z-index: 2147483645;
}
.kpxc .ui-widget-overlay {
@ -57,10 +58,10 @@ input.genpw-text {
}
.genpw-input-group-addon {
font-size: inherit !important;
font-size: .9em !important;
background-color: #eee;
border: 1px solid #ccc;
padding: .4em;
padding: .2em;
border-radius: 4px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
@ -102,6 +103,10 @@ input.genpw-text {
margin-right: 5px;
}
#cip-genpw-quality {
text-align: center;
}
.b2c-modal-backdrop {
position: fixed;
top: 0;

View file

@ -231,7 +231,7 @@ cipPassword.createDialog = function() {
.addClass('genpw-input-group-addon')
.addClass('b2c-add-on')
.attr('id', 'cip-genpw-quality')
.text('123 Bits');
.text('??? Bits');
$inputGroup.append($textfieldPassword).append($quality);
const $checkGroup = jQuery('<div>').addClass('genpw-input-group');