sindresorhus/refined-github

The issue has been closed
`display: flex` doesn't play well with Notifications Beta search #2703
mmarchini posted onGitHub
<!-- Thanks for reporting a bug! â›° 1. Make sure the bug is caused by Refined GitHub. Try disabling the extension first. 2. Include a full URL where the bug appears. 3. Include a screenshot/gif Issues without a URL/screenshot will be closed -->
Without the extension enabled:
With the extension enabled (quick search overlaps the search box):
I looked at the CSS used by refined-github, and it changes the display
of the search elements from block
and inline-block
to flex
. The autocomplete is a block
and ends up interacting poorly with other elements there.
I'm using this custom CSS as a workaround:
.js-notifications-container .subnav-search-input {
display: inline-block;
}
.js-notifications-container .subnav-search {
display: block;
}
but there's probably a better way to do it (using flex
for the autocomplete, for example).