users-lists.less 977 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. font-weight: bold;
  37. }
  38. .avatar {
  39. width: 22px;
  40. height: 22px;
  41. }
  42. i {
  43. position: relative;
  44. top: 2px;
  45. }
  46. }
  47. }