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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. overflow: auto;
  11. }
  12. .clickable {
  13. cursor: pointer;
  14. }
  15. }
  16. #contacts {
  17. >li {
  18. color: $defaultSideBarFontColor;
  19. list-style-type: none;
  20. text-align: left;
  21. white-space: nowrap;
  22. color: #FFF;
  23. font-size: 10pt;
  24. padding: 6px 30px;
  25. &:hover,
  26. &:active {
  27. background: $toolbarSelectBackground;
  28. }
  29. > p {
  30. display: inline-block;
  31. vertical-align: middle;
  32. margin: 0px;
  33. }
  34. }
  35. }
  36. .avatar {
  37. padding: 0px;
  38. margin-right: 10px;
  39. vertical-align: middle;
  40. font-size: 22pt;
  41. border-radius: 20px;
  42. max-height: 30px;
  43. max-width: 30px;
  44. }