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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #contacts_container {
  2. cursor: default;
  3. /**
  4. * Override generic side toolbar styles to compensate for AtlasKit Button
  5. * being used instead of custom button styling.
  6. */
  7. .sideToolbarBlock {
  8. .contact-list-panel-invite-button {
  9. font-size: $modalButtonFontSize;
  10. justify-content: center;
  11. margin: 9px 0;
  12. }
  13. }
  14. #contacts {
  15. font-size: 12px;
  16. bottom: 0px;
  17. margin: 0;
  18. margin-top: 12px;
  19. padding: 0px;
  20. width: 100%;
  21. }
  22. .clickable {
  23. cursor: pointer;
  24. }
  25. .icon-security,
  26. .icon-security-locked {
  27. font-size: 16px;
  28. }
  29. }
  30. #contacts {
  31. .contact-list-item {
  32. align-items: center;
  33. border-radius: 3px;
  34. color: $baseLight;
  35. display: flex;
  36. font-size: 14px;
  37. height: 36px;
  38. list-style-type: none;
  39. padding: 0 10%;
  40. text-align: left;
  41. white-space: nowrap;
  42. &:hover,
  43. &:active {
  44. background: $toolbarSelectBackground;
  45. }
  46. .contact-list-item-name {
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. }
  50. .avatar {
  51. cursor: pointer;
  52. height: 24px;
  53. margin: 0 8px 0 4px;
  54. width: 24px;
  55. }
  56. }
  57. }
  58. .avatar {
  59. padding: 0px;
  60. margin-right: 10px;
  61. vertical-align: middle;
  62. font-size: 22pt;
  63. border-radius: 20px;
  64. max-height: 30px;
  65. max-width: 30px;
  66. }