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 831B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import "tributejs/dist/tribute.css";
  2. .tribute-container {
  3. box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
  4. border-radius: var(--border-radius);
  5. }
  6. .tribute-container ul {
  7. margin-top: 0 !important;
  8. background: var(--color-body) !important;
  9. }
  10. .tribute-container li {
  11. padding: 3px 0.5rem !important;
  12. }
  13. .tribute-container li span.fullname {
  14. font-weight: var(--font-weight-normal);
  15. font-size: 0.8rem;
  16. margin-left: 3px;
  17. }
  18. .tribute-container li.highlight,
  19. .tribute-container li:hover {
  20. background: var(--color-primary) !important;
  21. color: var(--color-primary-contrast) !important;
  22. }
  23. .tribute-item {
  24. display: flex;
  25. align-items: center;
  26. }
  27. .tribute-item .emoji,
  28. .tribute-item img[src*="/avatar/"] {
  29. margin-right: 0.5rem;
  30. }
  31. .tribute-container img {
  32. width: 1.5rem !important;
  33. height: 1.5rem !important;
  34. }