sindresorhus/refined-github

`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:

img-2020-01-14-171320

With the extension enabled (quick search overlaps the search box):

img-2020-01-14-171339

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).


Looking into adding a fix :)

posted by casz about 5 years ago

Fund this Issue

$0.00
Funded

Pull requests