You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tribute.css 657B

123456789101112131415161718192021222324252627
  1. .tribute-container {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. height: auto;
  6. max-height: 300px;
  7. max-width: 500px;
  8. overflow: auto;
  9. display: block;
  10. z-index: 999999; }
  11. .tribute-container ul {
  12. margin: 0;
  13. margin-top: 2px;
  14. padding: 0;
  15. list-style: none;
  16. background: #efefef; }
  17. .tribute-container li {
  18. padding: 5px 5px;
  19. cursor: pointer; }
  20. .tribute-container li.highlight, .tribute-container li:hover {
  21. background: #ddd; }
  22. .tribute-container li span {
  23. font-weight: bold; }
  24. .tribute-container li.no-match {
  25. cursor: default; }
  26. .tribute-container .menu-highlighted {
  27. font-weight: bold; }