pager.less 836 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // Misago pager
  3. // --------------------------------------------------
  4. .pager-undercontent {
  5. margin-top: @line-height-computed * -1;
  6. }
  7. .pager-progress-bar {
  8. list-style: none;
  9. margin: 0px;
  10. margin-top: (@line-height-computed * -2.25) - 1px;
  11. padding: 0px;
  12. overflow: auto;
  13. text-align: center;
  14. li {
  15. display: inline-block;
  16. a {
  17. padding: 0px 6px;
  18. }
  19. &.active {
  20. a {
  21. font-weight: bold;
  22. }
  23. }
  24. }
  25. }
  26. // "Load more" button
  27. .pager-more {
  28. text-align: center;
  29. }
  30. // Small displays
  31. @media screen and (max-width: @screen-sm-max) {
  32. .pager-more .btn {
  33. display: block;
  34. text-align: center;
  35. }
  36. }
  37. // Large displays
  38. @media screen and (min-width: @screen-md-min) {
  39. .pager-more .btn {
  40. padding-left: @line-height-computed;
  41. padding-right: @line-height-computed;
  42. }
  43. }