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.

_contact_list.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #contacts_container {
  2. cursor: default;
  3. #contacts {
  4. font-size: 12px;
  5. bottom: 0px;
  6. margin: 0;
  7. margin-top: 12px;
  8. padding: 0px;
  9. width: 100%;
  10. }
  11. .clickable {
  12. cursor: pointer;
  13. }
  14. }
  15. #contacts {
  16. .contact-list-item {
  17. align-items: center;
  18. border-radius: 3px;
  19. color: $baseLight;
  20. display: flex;
  21. font-size: 14px;
  22. height: 36px;
  23. list-style-type: none;
  24. padding: 0 10%;
  25. text-align: left;
  26. white-space: nowrap;
  27. &:hover,
  28. &:active {
  29. background: $toolbarSelectBackground;
  30. }
  31. .contact-list-item-name {
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. }
  35. .avatar {
  36. cursor: pointer;
  37. height: 24px;
  38. margin: 0 8px 0 4px;
  39. width: 24px;
  40. }
  41. }
  42. }
  43. .avatar {
  44. padding: 0px;
  45. margin-right: 10px;
  46. vertical-align: middle;
  47. font-size: 22pt;
  48. border-radius: 20px;
  49. max-height: 30px;
  50. max-width: 30px;
  51. }