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