diff --git a/src/templates/default/bbpress/loop-single-forum.php b/src/templates/default/bbpress/loop-single-forum.php
index b3a3846..cbb4e28 100644
|
a
|
b
|
defined( 'ABSPATH' ) || exit;
|
| 24 | 24 | <?php bbp_forum_subscription_link( |
| 25 | 25 | array( |
| 26 | 26 | 'before' => '', |
| 27 | | 'subscribe' => '+', |
| 28 | | 'unsubscribe' => '×' |
| | 27 | 'subscribe' => '<span class="dashicons dashicons-plus" aria-hidden="true"></span>', |
| | 28 | 'unsubscribe' => '<span class="dashicons dashicons-no" aria-hidden="true"></span>' |
| 29 | 29 | ) |
| 30 | 30 | ); ?> |
| 31 | 31 | |
diff --git a/src/templates/default/bbpress/loop-single-topic.php b/src/templates/default/bbpress/loop-single-topic.php
index 531a705..a9afa49 100644
|
a
|
b
|
defined( 'ABSPATH' ) || exit;
|
| 26 | 26 | <?php bbp_topic_favorite_link( |
| 27 | 27 | array( |
| 28 | 28 | 'before' => '', |
| 29 | | 'favorite' => '+', |
| 30 | | 'favorited' => '×' |
| | 29 | 'favorite' => '<span class="dashicons dashicons-plus" aria-hidden="true"></span>', |
| | 30 | 'favorited' => '<span class="dashicons dashicons-no" aria-hidden="true"></span>' |
| 31 | 31 | ) |
| 32 | 32 | ); ?> |
| 33 | 33 | |
| … |
… |
defined( 'ABSPATH' ) || exit;
|
| 44 | 44 | <?php bbp_topic_subscription_link( |
| 45 | 45 | array( |
| 46 | 46 | 'before' => '', |
| 47 | | 'subscribe' => '+', |
| 48 | | 'unsubscribe' => '×' |
| | 47 | 'subscribe' => '<span class="dashicons dashicons-plus" aria-hidden="true"></span>', |
| | 48 | 'unsubscribe' => '<span class="dashicons dashicons-no" aria-hidden="true"></span>' |
| 49 | 49 | ) |
| 50 | 50 | ); ?> |
| 51 | 51 | |
diff --git a/src/templates/default/css/bbpress.css b/src/templates/default/css/bbpress.css
index 8b87ad6..d2baa70 100644
|
a
|
b
|
td.bbp-topic-counts {
|
| 562 | 562 | background-color: #dfd; |
| 563 | 563 | font-weight: 700; |
| 564 | 564 | font-size: 12px; |
| | 565 | line-height: 1; |
| | 566 | display: inline-flex; |
| | 567 | align-items: center; |
| | 568 | justify-content: center; |
| 565 | 569 | } |
| 566 | 570 | |
| 567 | 571 | .bbp-row-actions #favorite-toggle a:hover { |
| … |
… |
td.bbp-topic-counts {
|
| 590 | 594 | background-color: #dfd; |
| 591 | 595 | font-weight: 700; |
| 592 | 596 | font-size: 12px; |
| | 597 | line-height: 1; |
| | 598 | display: inline-flex; |
| | 599 | align-items: center; |
| | 600 | justify-content: center; |
| 593 | 601 | } |
| 594 | 602 | |
| 595 | 603 | .bbp-row-actions #subscription-toggle a:hover { |
| … |
… |
td.bbp-topic-counts {
|
| 610 | 618 | background-color: #fdd; |
| 611 | 619 | } |
| 612 | 620 | |
| | 621 | .bbp-row-actions #favorite-toggle a .dashicons, |
| | 622 | .bbp-row-actions #subscription-toggle a .dashicons { |
| | 623 | width: 16px; |
| | 624 | height: 16px; |
| | 625 | font-size: 16px; |
| | 626 | line-height: 16px; |
| | 627 | } |
| | 628 | |
| 613 | 629 | #bbpress-forums .bbp-forum-info .bbp-forum-content, |
| 614 | 630 | #bbpress-forums p.bbp-topic-meta { |
| 615 | 631 | font-size: 11px; |