Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devtools: remove artificial limit on suggestion box width
This was probably added in the stone ages when displays were 640x480px For a while this setting was ignored because .suggest-box had flex-box applied. With 06f5e50 it became effective again. My screen has 5120px width, no need to limit suggestion box to 300px. I think it should be responsibility of the code feeding suggestion box's items to trim their length reasonably (because that code understands them). CSS's `overflow:hidden` is not helpful much in pathological cases of long items. Better to leave suggest-box overgrow screen than hide its content IMO. @JoelEinbinder ^
- Loading branch information
824c29c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I'll look into why it was there and if there was any reason for it.