users-lists.less 897 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Users list
  2. // --------------------------------------------------
  3. .table-users {
  4. a:link, a:active,
  5. a:visited, a:hover {
  6. color: @textColor;
  7. font-size: 150%;
  8. text-decoration: none
  9. }
  10. .avatar {
  11. .border-radius(3px);
  12. width: 42px;
  13. height: 42px;
  14. }
  15. // Info popover
  16. .info-popover {
  17. background: darken(@bodyBackground, 10%);
  18. .border-radius(3px);
  19. padding: 2px;
  20. padding-top: 0px;
  21. i {
  22. margin: 0px;
  23. }
  24. &:hover {
  25. background: darken(@bodyBackground, 50%);
  26. i {
  27. background-image: url("@{iconWhiteSpritePath}");
  28. }
  29. }
  30. }
  31. // Tiny size, for lists with tons of members
  32. &.list-tiny {
  33. a:link, a:active,
  34. a:visited, a:hover {
  35. font-size: 100%;
  36. }
  37. .avatar {
  38. width: 22px;
  39. height: 22px;
  40. }
  41. i {
  42. position: relative;
  43. top: 2px;
  44. }
  45. }
  46. }