Hacker News new | ask | show | jobs
by gkgicccj 3064 days ago
I'm still annoyed by some fx changes that are purely out of chrome jealousy.

The address bar suggestions used to be 2-lines and were so readable until someone just blindly copied the unreadable version of chrome.

1 comments

You mean like this <https://i.imgur.com/6ZXAchD.png>? You can get the old look back via userChrome.css. Relevant styles from mine:

  #PopupAutoCompleteRichResult .ac-separator {
    page-break-before: always;
    width: 47px;
  }

  #PopupAutoCompleteRichResult .ac-separator-text {
    display: none !important;
  }

  #PopupAutoCompleteRichResult richlistitem {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding-bottom: 5px;
  }
You created an account just to answer me? Thank you! I forgot to upvote earlier.
Yes, thank you!