| 1 |
.wpbc-bottom-pagination{ |
| 2 |
display: flex; |
| 3 |
flex-flow: row wrap; |
| 4 |
justify-content: flex-end; |
| 5 |
align-items: stretch; |
| 6 |
} |
| 7 |
.wpbc-ajax-pagination_items_per_page, |
| 8 |
.wpbc-ajax-pagination-container { |
| 9 |
display:flex; |
| 10 |
flex-flow: row wrap; |
| 11 |
justify-content: flex-start; |
| 12 |
align-items: stretch; |
| 13 |
|
| 14 |
margin: 0; |
| 15 |
} |
| 16 |
.wpbc-ajax-pagination_items_per_page{ |
| 17 |
margin-left: 1em; |
| 18 |
margin-top: -1px; |
| 19 |
} |
| 20 |
.wpbc-ajax-pagination_items_per_page .ui_element, |
| 21 |
.wpbc-ajax-pagination .ui_element { |
| 22 |
flex: 0 0 auto; |
| 23 |
} |
| 24 |
.wpbc-ajax-pagination .ui_element > .wpbc_ui_button { |
| 25 |
height: 30px; |
| 26 |
margin: 5px 5px; |
| 27 |
padding: 0 14px; |
| 28 |
} |
| 29 |
.wpbc-ajax-pagination_items_per_page .ui_element > * { |
| 30 |
height: 30px; |
| 31 |
margin: 6px 5px; |
| 32 |
} |
| 33 |
|
| 34 |
.wpbc-ajax-pagination .ui_element .wpbc_ui_button.active:not(.inactive), |
| 35 |
.wpbc-ajax-pagination .ui_element .wpbc_ui_button.active:hover:not(.inactive) { |
| 36 |
transform: none; |
| 37 |
} |
| 38 |
@media (max-width: 782px) { |
| 39 |
|
| 40 |
.wpbc-bottom-pagination .wpbc-ajax-pagination-container .ui_element > *, |
| 41 |
.wpbc-bottom-pagination .wpbc-ajax-pagination_items_per_page .ui_element > * { |
| 42 |
height: 38px; |
| 43 |
} |
| 44 |
.wpbc-bottom-pagination .wpbc-ajax-pagination-container .ui_element > .wpbc_ui_button, |
| 45 |
.wpbc-bottom-pagination .wpbc-ajax-pagination_items_per_page .ui_element > .wpbc_ui_button { |
| 46 |
padding: 0 15px 2px; |
| 47 |
padding-bottom: 1px; |
| 48 |
display: flex; |
| 49 |
flex-flow: row wrap; |
| 50 |
justify-content: center; |
| 51 |
align-items: center; |
| 52 |
} |
| 53 |
} |
| 54 |
|