_result-repository.scss 868 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .select2-result-repository {
  2. padding-top: 4px;
  3. padding-bottom: 3px;
  4. &__avatar {
  5. float: left;
  6. width: 60px;
  7. margin-right: 10px;
  8. img {
  9. width: 100%;
  10. height: auto;
  11. border-radius: 2px;
  12. }
  13. }
  14. &__meta {
  15. margin-left: 70px;
  16. }
  17. &__title {
  18. color: black;
  19. font-weight: bold;
  20. word-wrap: break-word;
  21. line-height: 1.1;
  22. margin-bottom: 4px;
  23. }
  24. &__forks,
  25. &__stargazers {
  26. margin-right: 1em;
  27. }
  28. &__forks,
  29. &__stargazers,
  30. &__watchers {
  31. display: inline-block;
  32. color: #aaa;
  33. font-size: 11px;
  34. }
  35. &__description {
  36. font-size: 13px;
  37. color: #777;
  38. margin-top: 4px;
  39. }
  40. .select2-results__option--highlighted & {
  41. &__title {
  42. color: white;
  43. }
  44. &__forks,
  45. &__stargazers,
  46. &__description,
  47. &__watchers {
  48. color: mix(#428BCA, white, 30%);
  49. }
  50. }
  51. }