mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #109 from keepassxreboot/password_gen_fixes
Password generator fixes
This commit is contained in:
commit
20e7fda98e
2 changed files with 8 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue