users-lists.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // Users Lists
  3. // --------------------------------------------------
  4. // Active posters list
  5. .active-posters {
  6. li {
  7. display: block;
  8. overflow: auto;
  9. }
  10. .rank-user {
  11. .rank-name, .user-title {
  12. font-size: @font-size-small;
  13. }
  14. }
  15. }
  16. // Compact displays
  17. @media screen and (max-width: @screen-sm-max) {
  18. .active-posters {
  19. .rank-user-avatar {
  20. float: left;
  21. }
  22. .rank-user {
  23. float: left;
  24. margin-left: @line-height-computed * .8;
  25. width: 40%;
  26. .item-title {
  27. margin-top: 4px;
  28. font-size: @font-size-large;
  29. }
  30. }
  31. .rank-position, .rank-posts-total, .rank-posts-counted {
  32. font-size: @font-size-small;
  33. div {
  34. display: inline-block;
  35. }
  36. }
  37. }
  38. }
  39. // Full displays
  40. @media screen and (min-width: @screen-md-min) {
  41. .active-posters {
  42. li>* {
  43. float: left;
  44. }
  45. .rank-user {
  46. width: 25%;
  47. }
  48. .rank-position {
  49. width: 15%;
  50. }
  51. .rank-posts-total {
  52. width: 20%;
  53. }
  54. .rank-posts-counted {
  55. width: 20%;
  56. }
  57. .rank-position, .rank-posts-total, .rank-posts-counted {
  58. font-size: @font-size-large;
  59. font-weight: bold;
  60. text-align: center;
  61. .text-muted {
  62. font-size: @font-size-small;
  63. font-weight: normal;
  64. }
  65. }
  66. }
  67. }