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

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