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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #contacts_container {
  2. cursor: default;
  3. > ul#contacts {
  4. font-size: 12px;
  5. bottom: 0px;
  6. margin: 0px;
  7. padding: 0px;
  8. width: 100%;
  9. overflow: auto;
  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. }
  33. }
  34. }
  35. .avatar {
  36. padding: 0px;
  37. margin-right: 10px;
  38. vertical-align: middle;
  39. font-size: 22pt;
  40. border-radius: 20px;
  41. max-height: 30px;
  42. max-width: 30px;
  43. }