pager.less 695 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. // Large displays
  31. @media screen and (min-width: @screen-md-min) {
  32. .pager-more .btn {
  33. padding-left: @line-height-computed;
  34. padding-right: @line-height-computed;
  35. }
  36. }