| Age | Commit message (Collapse) | Author |
|
Previously, we were taking the dimensions of the dialog while it still
had "display: none;", which caused clientWidth and clientHeight to
return zero.
|
|
|
|
|
|
Problem:
When bookmark completion is aborted using <ESC> key, the
completion dialog is faded out, zero opacity. This leaves
an invisible dialog hovering over the current page's content.
Any thing under the invisible dialog cannot get mouse focus,
including the links.
Solution:
After fading out the dialog, also hide it by its CSS display
property.
|
|
|
|
Happens when the partial string input matches more results
than can be displayed vertically. This causes the input section
at the top, together with the top matching URLS to disappear.
Solution is to only center the box when it's height is less than
the window height, otherwise it's top is at coordinate 0.
No negative top.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|