Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_contact_list.scss 1.1KB

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