diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/site/_bbpress.scss wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/site/_bbpress.scss
index f4925c33c..cea7e5090 100644
|
|
section { |
12 | 12 | overflow: inherit; |
13 | 13 | } |
14 | 14 | |
| 15 | $paginationBreakPoint: "600px"; |
| 16 | |
15 | 17 | .three-up { //3-columns section |
16 | 18 | |
17 | 19 | @extend .clear; |
… |
… |
section { |
472 | 474 | |
473 | 475 | .create-topic { |
474 | 476 | font-size: 0.8rem; |
| 477 | |
| 478 | @media (min-width: $paginationBreakPoint) { |
475 | 479 | float: left; |
| 480 | } |
476 | 481 | |
477 | 482 | &::before { |
478 | 483 | color: #000; |
… |
… |
section { |
487 | 492 | font-size: ms(-2); |
488 | 493 | float: none; |
489 | 494 | width: auto; |
| 495 | display: flex; |
| 496 | flex-direction: column; |
| 497 | |
| 498 | @media (min-width: $paginationBreakPoint) { |
| 499 | float: right; |
| 500 | display: inline-block; |
| 501 | } |
490 | 502 | |
491 | 503 | .page-numbers { |
492 | 504 | background: #fff; |
… |
… |
section { |
497 | 509 | padding: 2px 8px; |
498 | 510 | margin-left: -1px; |
499 | 511 | opacity: 1; |
| 512 | flex: 1; |
| 513 | |
| 514 | @media (min-width: $paginationBreakPoint) { |
| 515 | flex: inherit; |
| 516 | } |
500 | 517 | |
501 | 518 | &:not(.current):not(.dots):hover { |
502 | 519 | background: $color__wp-blue; |
… |
… |
section { |
530 | 547 | } |
531 | 548 | } |
532 | 549 | |
| 550 | #bbpress-forums .bbp-pagination-links { |
| 551 | display: flex; |
| 552 | text-align: center; |
| 553 | flex-wrap: wrap; |
| 554 | } |
| 555 | |
533 | 556 | #bbpress-forums ul.bbp-forums, |
534 | 557 | #bbpress-forums ul.bbp-lead-topic, |
535 | 558 | #bbpress-forums ul.bbp-replies, |
… |
… |
section { |
736 | 759 | margin-top: 1rem; |
737 | 760 | padding-top: 1rem; |
738 | 761 | border-top: 1px solid #eee; |
| 762 | clear: both; |
739 | 763 | } |
740 | 764 | |
741 | 765 | .topic-edit #bbpress-forums .bbp-topic-form legend, |