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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .icon-security,
  15. .icon-security-locked {
  16. font-size: 16px;
  17. }
  18. }
  19. #contacts {
  20. .contact-list-item {
  21. align-items: center;
  22. border-radius: 3px;
  23. color: $baseLight;
  24. display: flex;
  25. font-size: 14px;
  26. height: 36px;
  27. list-style-type: none;
  28. padding: 0 10%;
  29. text-align: left;
  30. white-space: nowrap;
  31. &:hover,
  32. &:active {
  33. background: $toolbarSelectBackground;
  34. }
  35. .contact-list-item-name {
  36. overflow: hidden;
  37. text-overflow: ellipsis;
  38. }
  39. .avatar {
  40. cursor: pointer;
  41. height: 24px;
  42. margin: 0 8px 0 4px;
  43. width: 24px;
  44. }
  45. }
  46. }
  47. .avatar {
  48. padding: 0px;
  49. margin-right: 10px;
  50. vertical-align: middle;
  51. font-size: 22pt;
  52. border-radius: 20px;
  53. max-height: 30px;
  54. max-width: 30px;
  55. }