mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #447 from keepassxreboot/fix/minor_for_133
Minor fixes for release 1.33
This commit is contained in:
commit
01dfa8eff0
2 changed files with 5 additions and 1 deletions
|
|
@ -7,6 +7,10 @@
|
|||
color: #222222 !important;
|
||||
}
|
||||
|
||||
.kpxc .ui-menu {
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.ui-helper-hidden-accessible {
|
||||
display: none !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -194,7 +194,7 @@ cipAutocomplete.onFocus = function(e) {
|
|||
|
||||
// Search for isTrusted from jQuery's originalEvent
|
||||
cipAutocomplete.isTrusted = function(e) {
|
||||
for (let f = e.originalEvent; f !== null; f = f.originalEvent) {
|
||||
for (let f = e.originalEvent; f; f = f.originalEvent) {
|
||||
if (f.isTrusted !== undefined) {
|
||||
return f.isTrusted;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue