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

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