autocomplete.css 925 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  5. @namespace html url("http://www.w3.org/1999/xhtml");
  6. /* Apply crisp rendering for favicons at exactly 2dppx resolution */
  7. @media (resolution: 2dppx) {
  8. .ac-site-icon {
  9. image-rendering: -moz-crisp-edges;
  10. }
  11. }
  12. richlistitem {
  13. -moz-box-orient: horizontal;
  14. overflow: hidden;
  15. }
  16. .ac-title-text,
  17. .ac-tags-text,
  18. .ac-url-text,
  19. .ac-action-text {
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. white-space: nowrap;
  23. }
  24. .ac-tags[empty] {
  25. display: none;
  26. }
  27. .ac-action[actiontype=searchengine]:not([selected]),
  28. .ac-separator[actiontype=searchengine]:not([selected]) {
  29. display: none;
  30. }
  31. .ac-separator[type=keyword] {
  32. display: none;
  33. }