12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // Misago pager
- // --------------------------------------------------
- .pager-undercontent {
- margin-top: @line-height-computed * -1;
- }
- .pager-progress-bar {
- list-style: none;
- margin: 0px;
- margin-top: (@line-height-computed * -2.25) - 1px;
- padding: 0px;
- overflow: auto;
- text-align: center;
- li {
- display: inline-block;
- a {
- padding: 0px 6px;
- }
- &.active {
- a {
- font-weight: bold;
- }
- }
- }
- }
- // "Load more" button
- .pager-more {
- text-align: center;
- }
- // Small displays
- @media screen and (max-width: @screen-sm-max) {
- .pager-more .btn {
- display: block;
- text-align: center;
- }
- }
- // Large displays
- @media screen and (min-width: @screen-md-min) {
- .pager-more .btn {
- padding-left: @line-height-computed;
- padding-right: @line-height-computed;
- }
- }
|