Ticket #2543: meta-2543.3.patch
File meta-2543.3.patch, 26.5 KB (added by , 8 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/content-single-topic-lead.php
7 7 * @subpackage Theme 8 8 */ 9 9 10 ?>10 if ( bbp_is_search_results() ) : ?> 11 11 12 <div id="post-<?php bbp_topic_id(); ?>" class="bbp-topic-header"> 13 <div class="bbp-meta"> 14 <span class="bbp-header"> 15 <?php esc_html_e( 'Forum:', 'wporg-forums' ); ?> 16 <a class="bbp-forum-permalink" href="<?php bbp_forum_permalink( bbp_get_topic_forum_id() ); ?>"><?php bbp_forum_title( bbp_get_topic_forum_id() ); ?></a><br /> 17 18 <?php esc_html_e( 'As the topic: ', 'wporg-forums' ); ?> 19 <a class="bbp-topic-permalink" href="<?php bbp_topic_permalink( bbp_get_topic_id() ); ?>"><?php bbp_topic_title( bbp_get_topic_id() ); ?></a> 20 </span> 21 </div><!-- .bbp-meta --> 22 </div><!-- #post-<?php bbp_topic_id(); ?> --> 23 24 <?php endif; ?> 25 12 26 <?php do_action( 'bbp_template_before_lead_topic' ); ?> 13 27 14 28 <ul id="bbp-topic-<?php bbp_topic_id(); ?>-lead" class="bbp-lead-topic"> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/loop-search.php
1 <?php do_action( 'bbp_template_before_search_results_loop' ); ?> 2 3 <ul id="bbp-search-results" class="forums bbp-search-results"> 4 5 <li class="bbp-body"> 6 7 <?php while ( bbp_search_results() ) : bbp_the_search_result(); ?> 8 9 <?php if ( 'topic' === get_post_type() ) : ?> 10 11 <?php bbp_get_template_part( 'content', 'single-topic-lead' ); ?> 12 13 <?php else : ?> 14 15 <?php bbp_get_template_part( 'loop', 'single-reply' ); ?> 16 17 <?php endif; ?> 18 19 <?php endwhile; ?> 20 21 </li><!-- .bbp-body --> 22 23 </ul><!-- #bbp-search-results --> 24 25 <?php do_action( 'bbp_template_after_search_results_loop' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/loop-single-reply.php
7 7 * @subpackage Theme 8 8 */ 9 9 10 if ( bbp_is_single_user_replies() ) : ?>10 if ( bbp_is_single_user_replies() || bbp_is_search_results() ) : ?> 11 11 12 12 <div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header"> 13 13 <div class="bbp-meta"> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/elements/_badges.scss
38 38 background-color: $color__theme-author; 39 39 } 40 40 41 .bbp-view .bbp-topics, 42 .bbp-search .bbp-search-results, 41 43 #bbp-user-replies-created { 42 .author-has-badge {44 div.author-has-badge { 43 45 box-shadow: none; 44 46 border-left-style: solid; 45 47 border-left-width: 3px; … … 60 62 } 61 63 62 64 .author-badge { 63 position: inherit; 64 float: left; 65 margin: 2px 0 6px -8px; 65 left: 0; 66 66 } 67 67 } 68 68 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/site/_bbpress.scss
124 124 } 125 125 } 126 126 127 .bbp-topics .bbp-topic-author, 128 .bbp-topics .bbp-reply-author, 129 .bbp-search-results .bbp-topic-author, 130 .bbp-search-results .bbp-reply-author { 131 margin-top: 1.45rem; 127 ul.bbp-lead-topic { 128 margin: 0; 132 129 } 133 130 131 ul.bbp-lead-topic li.bbp-body { 132 border: 0; 133 } 134 135 ul.bbp-lead-topic li.bbp-body div.topic { 136 background: transparent; 137 } 138 139 .bbp-search-results div.topic .topic-indicator { 140 display: none; 141 } 142 143 div.bbp-reply-author a.bbp-author-name, 144 div.bbp-topic-author a.bbp-author-name { 145 clear: none; 146 font-size: ms(0); 147 display: inline-block; 148 margin: 0; 149 } 150 151 div.bbp-reply-author, 152 div.bbp-topic-author { 153 float: none; 154 text-align: left; 155 width: 100%; 156 margin: 1rem 0 2rem; 157 padding-left: 5%; 158 } 159 160 .bbp-user-nicename, 161 .bbp-topic-post-date, 162 .bbp-topic-ip, 163 .bbp-reply-post-date, 164 .bbp-reply-ip, 165 .wporg-bbp-user-flag { 166 font-size: ms(-2); 167 font-weight: normal; 168 margin: 0; 169 margin-right: 10px; 170 display: inline-block; 171 } 172 173 span.bbp-author-ip { 174 font-size: ms(-2); 175 font-weight: 400; 176 } 177 178 div.topic, 179 div.reply { 180 padding: 1.5rem 0; 181 } 182 183 div.bbp-reply-content, 184 div.bbp-topic-content { 185 padding: 0; 186 margin: 0 0 0 5%; 187 } 188 189 li.bbp-body div.type-topic:hover span.bbp-admin-links, 190 li.bbp-body div.type-reply:hover span.bbp-admin-links { 191 bottom: 0; 192 right: 0; 193 background: #fbfbfb; 194 padding: 3px 10px; 195 196 a { 197 color: #0073aa; 198 text-transform: inherit; 199 font-size: 0.7rem; 200 201 &:hover { 202 text-decoration: underline; 203 } 204 } 205 } 206 134 207 ul.status-closed, 135 208 ul.status-closed a { 136 209 color: inherit; … … 627 700 } 628 701 } 629 702 630 div.bbp-reply-author a.bbp-author-name, 631 div.bbp-topic-author a.bbp-author-name { 632 clear: none; 633 font-size: ms(0); 634 display: inline-block; 703 ul.bbp-lead-topic { 704 margin-bottom: 15px; 635 705 } 636 706 637 div.bbp-forum-author a.bbp-author-name,638 div.bbp-reply-author a.bbp-author-name,639 div.bbp-topic-author a.bbp-author-name {640 margin: 0;641 }642 643 707 ul.bbp-lead-topic li.bbp-body { 644 708 border: 1px solid #eee; 645 709 border-top: none; 646 710 } 711 647 712 ul.bbp-lead-topic li.bbp-body div.topic { 648 713 background: #fbfbfb; 649 714 padding: 1.5rem 1.5rem 1.5rem 0; 650 715 } 651 716 652 div.bbp-forum-author,653 717 div.bbp-reply-author, 654 718 div.bbp-topic-author { 655 float: none;656 text-align: left;657 width: 100%;658 margin: 1rem 0 2rem;659 719 padding-left: 10%; 660 720 } 661 721 662 .bbp-author-role {663 margin: 0;664 border: none;665 background: none;666 }667 668 722 .bbp-author-title { 669 723 margin: 0; 670 724 } 671 725 672 .bbp-user-nicename, .bbp-topic-post-date, .bbp-topic-ip, .bbp-reply-post-date, .bbp-reply-ip, .wporg-bbp-user-flag {673 font-size: ms(-2);674 font-weight: normal;675 margin: 0;676 margin-right: 10px;677 display: inline-block;678 679 span.bbp-author-ip, span.bbp-reply-ip {680 font-size: ms(-2);681 font-weight: 400;682 }683 }684 685 div.bbp-forum-author .bbp-author-role,686 div.bbp-reply-author .bbp-author-role,687 div.bbp-topic-author .bbp-author-role {688 font-size: ms(-2);689 font-style: normal;690 }691 692 726 div.bbp-forum-content, 693 727 div.bbp-reply-content, 694 728 div.bbp-topic-content { … … 699 733 font-weight: inherit; 700 734 } 701 735 } 736 702 737 div.bbp-reply-content { 703 738 margin-left: 11%; 704 739 } … … 709 744 ul.odd { 710 745 background: #fff; 711 746 border-top: 2px solid #eee; 712 padding: 1.5rem 0;713 747 } 714 748 715 li.bbp-body div.type-topic:hover span.bbp-admin-links,716 li.bbp-body div.type-reply:hover span.bbp-admin-links {717 bottom: 0;718 right: 0;719 background: #fbfbfb;720 padding: 3px 10px;721 722 a {723 color: #0073aa;724 text-transform: inherit;725 font-size: 0.7rem;726 727 &:hover {728 text-decoration: underline;729 }730 }731 }732 733 749 // Ratings 734 750 .wporg-ratings { 735 751 background-color: #fbfbfb; … … 740 756 padding-top: 0.5em; 741 757 } 742 758 743 744 // Show dashicon if topic is sticky 759 // Show dashicon if topic is sticky or closed 745 760 .topic { 746 761 position: relative; 747 762 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/style-original.scss
283 283 padding-top: 5px; 284 284 } 285 285 286 .bbp-topic-header .bbp-topic-permalink, 286 287 .bbp-reply-header .bbp-topic-permalink, 287 288 .bbp-breadcrumb .bbp-breadcrumb-topic { 288 289 display: inline-block; -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style-rtl.css
476 476 padding-top: 5px; 477 477 } 478 478 479 .bbp-topic-header .bbp-topic-permalink, 479 480 .bbp-reply-header .bbp-topic-permalink, 480 481 .bbp-breadcrumb .bbp-breadcrumb-topic { 481 482 display: inline-block; … … 864 865 background-color: #4e3288; 865 866 } 866 867 867 #bbp-user-replies-created .author-has-badge { 868 .bbp-view .bbp-topics div.author-has-badge, 869 .bbp-search .bbp-search-results div.author-has-badge, 870 #bbp-user-replies-created div.author-has-badge { 868 871 box-shadow: none; 869 872 border-right-style: solid; 870 873 border-right-width: 3px; 871 874 } 872 875 876 .bbp-view .bbp-topics .by-moderator, 877 .bbp-search .bbp-search-results .by-moderator, 873 878 #bbp-user-replies-created .by-moderator { 874 879 border-right-color: #33b4ce; 875 880 } 876 881 882 .bbp-view .bbp-topics .by-plugin-author, 883 .bbp-view .bbp-topics .by-plugin-contributor, 884 .bbp-search .bbp-search-results .by-plugin-author, 885 .bbp-search .bbp-search-results .by-plugin-contributor, 877 886 #bbp-user-replies-created .by-plugin-author, 878 887 #bbp-user-replies-created .by-plugin-contributor { 879 888 border-right-color: #f06723; 880 889 } 881 890 891 .bbp-view .bbp-topics .by-theme-author, 892 .bbp-view .bbp-topics .by-theme-contributor, 893 .bbp-search .bbp-search-results .by-theme-author, 894 .bbp-search .bbp-search-results .by-theme-contributor, 882 895 #bbp-user-replies-created .by-theme-author, 883 896 #bbp-user-replies-created .by-theme-contributor { 884 897 border-right-color: #4e3288; 885 898 } 886 899 900 .bbp-view .bbp-topics .author-badge, 901 .bbp-search .bbp-search-results .author-badge, 887 902 #bbp-user-replies-created .author-badge { 888 position: inherit; 889 float: right; 890 margin: 2px -8px 6px 0; 903 right: 0; 891 904 } 892 905 893 906 @media screen and (max-width: 480px) { … … 2585 2598 color: #fff; 2586 2599 } 2587 2600 2588 .bbpress #bbpress-forums .bbp-topics .bbp-topic-author, 2589 .bbpress #bbpress-forums .bbp-topics .bbp-reply-author, 2590 .bbpress #bbpress-forums .bbp-search-results .bbp-topic-author, 2591 .bbpress #bbpress-forums .bbp-search-results .bbp-reply-author { 2592 margin-top: 1.45rem; 2601 .bbpress #bbpress-forums ul.bbp-lead-topic { 2602 margin: 0; 2593 2603 } 2594 2604 2605 .bbpress #bbpress-forums ul.bbp-lead-topic li.bbp-body { 2606 border: 0; 2607 } 2608 2609 .bbpress #bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic { 2610 background: transparent; 2611 } 2612 2613 .bbpress #bbpress-forums .bbp-search-results div.topic .topic-indicator { 2614 display: none; 2615 } 2616 2617 .bbpress #bbpress-forums div.bbp-reply-author a.bbp-author-name, 2618 .bbpress #bbpress-forums div.bbp-topic-author a.bbp-author-name { 2619 clear: none; 2620 font-size: 1rem; 2621 display: inline-block; 2622 margin: 0; 2623 } 2624 2625 .bbpress #bbpress-forums div.bbp-reply-author, 2626 .bbpress #bbpress-forums div.bbp-topic-author { 2627 float: none; 2628 text-align: right; 2629 width: 100%; 2630 margin: 1rem 0 2rem; 2631 padding-right: 5%; 2632 } 2633 2634 .bbpress #bbpress-forums .bbp-user-nicename, 2635 .bbpress #bbpress-forums .bbp-topic-post-date, 2636 .bbpress #bbpress-forums .bbp-topic-ip, 2637 .bbpress #bbpress-forums .bbp-reply-post-date, 2638 .bbpress #bbpress-forums .bbp-reply-ip, 2639 .bbpress #bbpress-forums .wporg-bbp-user-flag { 2640 font-size: 0.8rem; 2641 font-weight: normal; 2642 margin: 0; 2643 margin-left: 10px; 2644 display: inline-block; 2645 } 2646 2647 .bbpress #bbpress-forums span.bbp-author-ip { 2648 font-size: 0.8rem; 2649 font-weight: 400; 2650 } 2651 2652 .bbpress #bbpress-forums div.topic, 2653 .bbpress #bbpress-forums div.reply { 2654 padding: 1.5rem 0; 2655 } 2656 2657 .bbpress #bbpress-forums div.bbp-reply-content, 2658 .bbpress #bbpress-forums div.bbp-topic-content { 2659 padding: 0; 2660 margin: 0 5% 0 0; 2661 } 2662 2663 .bbpress #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links, 2664 .bbpress #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links { 2665 bottom: 0; 2666 left: 0; 2667 background: #fbfbfb; 2668 padding: 3px 10px; 2669 } 2670 2671 .bbpress #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a, 2672 .bbpress #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a { 2673 color: #0073aa; 2674 text-transform: inherit; 2675 font-size: 0.7rem; 2676 } 2677 2678 .bbpress #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a:hover, 2679 .bbpress #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a:hover { 2680 text-decoration: underline; 2681 } 2682 2595 2683 .bbpress #bbpress-forums ul.status-closed, 2596 2684 .bbpress #bbpress-forums ul.status-closed a { 2597 2685 color: inherit; … … 3104 3192 } 3105 3193 } 3106 3194 3107 .single-topic .entry-content #bbpress-forums div.bbp-reply-author a.bbp-author-name, 3108 .single-topic .entry-content #bbpress-forums div.bbp-topic-author a.bbp-author-name { 3109 clear: none; 3110 font-size: 1rem; 3111 display: inline-block; 3195 .single-topic .entry-content #bbpress-forums ul.bbp-lead-topic { 3196 margin-bottom: 15px; 3112 3197 } 3113 3198 3114 .single-topic .entry-content #bbpress-forums div.bbp-forum-author a.bbp-author-name,3115 .single-topic .entry-content #bbpress-forums div.bbp-reply-author a.bbp-author-name,3116 .single-topic .entry-content #bbpress-forums div.bbp-topic-author a.bbp-author-name {3117 margin: 0;3118 }3119 3120 3199 .single-topic .entry-content #bbpress-forums ul.bbp-lead-topic li.bbp-body { 3121 3200 border: 1px solid #eee; 3122 3201 border-top: none; … … 3127 3206 padding: 1.5rem 0 1.5rem 1.5rem; 3128 3207 } 3129 3208 3130 .single-topic .entry-content #bbpress-forums div.bbp-forum-author,3131 3209 .single-topic .entry-content #bbpress-forums div.bbp-reply-author, 3132 3210 .single-topic .entry-content #bbpress-forums div.bbp-topic-author { 3133 float: none;3134 text-align: right;3135 width: 100%;3136 margin: 1rem 0 2rem;3137 3211 padding-right: 10%; 3138 3212 } 3139 3213 3140 .single-topic .entry-content #bbpress-forums .bbp-author-role {3141 margin: 0;3142 border: none;3143 background: none;3144 }3145 3146 3214 .single-topic .entry-content #bbpress-forums .bbp-author-title { 3147 3215 margin: 0; 3148 3216 } 3149 3217 3150 .single-topic .entry-content #bbpress-forums .bbp-user-nicename, .single-topic .entry-content #bbpress-forums .bbp-topic-post-date, .single-topic .entry-content #bbpress-forums .bbp-topic-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-post-date, .single-topic .entry-content #bbpress-forums .bbp-reply-ip, .single-topic .entry-content #bbpress-forums .wporg-bbp-user-flag {3151 font-size: 0.8rem;3152 font-weight: normal;3153 margin: 0;3154 margin-left: 10px;3155 display: inline-block;3156 }3157 3158 .single-topic .entry-content #bbpress-forums .bbp-user-nicename span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-user-nicename span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-post-date span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-post-date span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-ip span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-ip span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-post-date span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-post-date span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-ip span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-ip span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .wporg-bbp-user-flag span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .wporg-bbp-user-flag span.bbp-reply-ip {3159 font-size: 0.8rem;3160 font-weight: 400;3161 }3162 3163 .single-topic .entry-content #bbpress-forums div.bbp-forum-author .bbp-author-role,3164 .single-topic .entry-content #bbpress-forums div.bbp-reply-author .bbp-author-role,3165 .single-topic .entry-content #bbpress-forums div.bbp-topic-author .bbp-author-role {3166 font-size: 0.8rem;3167 font-style: normal;3168 }3169 3170 3218 .single-topic .entry-content #bbpress-forums div.bbp-forum-content, 3171 3219 .single-topic .entry-content #bbpress-forums div.bbp-reply-content, 3172 3220 .single-topic .entry-content #bbpress-forums div.bbp-topic-content { … … 3190 3238 .single-topic .entry-content #bbpress-forums ul.odd { 3191 3239 background: #fff; 3192 3240 border-top: 2px solid #eee; 3193 padding: 1.5rem 0;3194 3241 } 3195 3242 3196 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links,3197 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links {3198 bottom: 0;3199 left: 0;3200 background: #fbfbfb;3201 padding: 3px 10px;3202 }3203 3204 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a,3205 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a {3206 color: #0073aa;3207 text-transform: inherit;3208 font-size: 0.7rem;3209 }3210 3211 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a:hover,3212 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a:hover {3213 text-decoration: underline;3214 }3215 3216 3243 .single-topic .entry-content #bbpress-forums .wporg-ratings { 3217 3244 background-color: #fbfbfb; 3218 3245 border: 1px solid #eee; -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style.css
476 476 padding-top: 5px; 477 477 } 478 478 479 .bbp-topic-header .bbp-topic-permalink, 479 480 .bbp-reply-header .bbp-topic-permalink, 480 481 .bbp-breadcrumb .bbp-breadcrumb-topic { 481 482 display: inline-block; … … 864 865 background-color: #4e3288; 865 866 } 866 867 867 #bbp-user-replies-created .author-has-badge { 868 .bbp-view .bbp-topics div.author-has-badge, 869 .bbp-search .bbp-search-results div.author-has-badge, 870 #bbp-user-replies-created div.author-has-badge { 868 871 box-shadow: none; 869 872 border-left-style: solid; 870 873 border-left-width: 3px; 871 874 } 872 875 876 .bbp-view .bbp-topics .by-moderator, 877 .bbp-search .bbp-search-results .by-moderator, 873 878 #bbp-user-replies-created .by-moderator { 874 879 border-left-color: #33b4ce; 875 880 } 876 881 882 .bbp-view .bbp-topics .by-plugin-author, 883 .bbp-view .bbp-topics .by-plugin-contributor, 884 .bbp-search .bbp-search-results .by-plugin-author, 885 .bbp-search .bbp-search-results .by-plugin-contributor, 877 886 #bbp-user-replies-created .by-plugin-author, 878 887 #bbp-user-replies-created .by-plugin-contributor { 879 888 border-left-color: #f06723; 880 889 } 881 890 891 .bbp-view .bbp-topics .by-theme-author, 892 .bbp-view .bbp-topics .by-theme-contributor, 893 .bbp-search .bbp-search-results .by-theme-author, 894 .bbp-search .bbp-search-results .by-theme-contributor, 882 895 #bbp-user-replies-created .by-theme-author, 883 896 #bbp-user-replies-created .by-theme-contributor { 884 897 border-left-color: #4e3288; 885 898 } 886 899 900 .bbp-view .bbp-topics .author-badge, 901 .bbp-search .bbp-search-results .author-badge, 887 902 #bbp-user-replies-created .author-badge { 888 position: inherit; 889 float: left; 890 margin: 2px 0 6px -8px; 903 left: 0; 891 904 } 892 905 893 906 @media screen and (max-width: 480px) { … … 2587 2600 color: #fff; 2588 2601 } 2589 2602 2590 .bbpress #bbpress-forums .bbp-topics .bbp-topic-author, 2591 .bbpress #bbpress-forums .bbp-topics .bbp-reply-author, 2592 .bbpress #bbpress-forums .bbp-search-results .bbp-topic-author, 2593 .bbpress #bbpress-forums .bbp-search-results .bbp-reply-author { 2594 margin-top: 1.45rem; 2603 .bbpress #bbpress-forums ul.bbp-lead-topic { 2604 margin: 0; 2595 2605 } 2596 2606 2607 .bbpress #bbpress-forums ul.bbp-lead-topic li.bbp-body { 2608 border: 0; 2609 } 2610 2611 .bbpress #bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic { 2612 background: transparent; 2613 } 2614 2615 .bbpress #bbpress-forums .bbp-search-results div.topic .topic-indicator { 2616 display: none; 2617 } 2618 2619 .bbpress #bbpress-forums div.bbp-reply-author a.bbp-author-name, 2620 .bbpress #bbpress-forums div.bbp-topic-author a.bbp-author-name { 2621 clear: none; 2622 font-size: 1rem; 2623 display: inline-block; 2624 margin: 0; 2625 } 2626 2627 .bbpress #bbpress-forums div.bbp-reply-author, 2628 .bbpress #bbpress-forums div.bbp-topic-author { 2629 float: none; 2630 text-align: left; 2631 width: 100%; 2632 margin: 1rem 0 2rem; 2633 padding-left: 5%; 2634 } 2635 2636 .bbpress #bbpress-forums .bbp-user-nicename, 2637 .bbpress #bbpress-forums .bbp-topic-post-date, 2638 .bbpress #bbpress-forums .bbp-topic-ip, 2639 .bbpress #bbpress-forums .bbp-reply-post-date, 2640 .bbpress #bbpress-forums .bbp-reply-ip, 2641 .bbpress #bbpress-forums .wporg-bbp-user-flag { 2642 font-size: 0.8rem; 2643 font-weight: normal; 2644 margin: 0; 2645 margin-right: 10px; 2646 display: inline-block; 2647 } 2648 2649 .bbpress #bbpress-forums span.bbp-author-ip { 2650 font-size: 0.8rem; 2651 font-weight: 400; 2652 } 2653 2654 .bbpress #bbpress-forums div.topic, 2655 .bbpress #bbpress-forums div.reply { 2656 padding: 1.5rem 0; 2657 } 2658 2659 .bbpress #bbpress-forums div.bbp-reply-content, 2660 .bbpress #bbpress-forums div.bbp-topic-content { 2661 padding: 0; 2662 margin: 0 0 0 5%; 2663 } 2664 2665 .bbpress #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links, 2666 .bbpress #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links { 2667 bottom: 0; 2668 right: 0; 2669 background: #fbfbfb; 2670 padding: 3px 10px; 2671 } 2672 2673 .bbpress #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a, 2674 .bbpress #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a { 2675 color: #0073aa; 2676 text-transform: inherit; 2677 font-size: 0.7rem; 2678 } 2679 2680 .bbpress #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a:hover, 2681 .bbpress #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a:hover { 2682 text-decoration: underline; 2683 } 2684 2597 2685 .bbpress #bbpress-forums ul.status-closed, 2598 2686 .bbpress #bbpress-forums ul.status-closed a { 2599 2687 color: inherit; … … 3106 3194 } 3107 3195 } 3108 3196 3109 .single-topic .entry-content #bbpress-forums div.bbp-reply-author a.bbp-author-name, 3110 .single-topic .entry-content #bbpress-forums div.bbp-topic-author a.bbp-author-name { 3111 clear: none; 3112 font-size: 1rem; 3113 display: inline-block; 3197 .single-topic .entry-content #bbpress-forums ul.bbp-lead-topic { 3198 margin-bottom: 15px; 3114 3199 } 3115 3200 3116 .single-topic .entry-content #bbpress-forums div.bbp-forum-author a.bbp-author-name,3117 .single-topic .entry-content #bbpress-forums div.bbp-reply-author a.bbp-author-name,3118 .single-topic .entry-content #bbpress-forums div.bbp-topic-author a.bbp-author-name {3119 margin: 0;3120 }3121 3122 3201 .single-topic .entry-content #bbpress-forums ul.bbp-lead-topic li.bbp-body { 3123 3202 border: 1px solid #eee; 3124 3203 border-top: none; … … 3129 3208 padding: 1.5rem 1.5rem 1.5rem 0; 3130 3209 } 3131 3210 3132 .single-topic .entry-content #bbpress-forums div.bbp-forum-author,3133 3211 .single-topic .entry-content #bbpress-forums div.bbp-reply-author, 3134 3212 .single-topic .entry-content #bbpress-forums div.bbp-topic-author { 3135 float: none;3136 text-align: left;3137 width: 100%;3138 margin: 1rem 0 2rem;3139 3213 padding-left: 10%; 3140 3214 } 3141 3215 3142 .single-topic .entry-content #bbpress-forums .bbp-author-role {3143 margin: 0;3144 border: none;3145 background: none;3146 }3147 3148 3216 .single-topic .entry-content #bbpress-forums .bbp-author-title { 3149 3217 margin: 0; 3150 3218 } 3151 3219 3152 .single-topic .entry-content #bbpress-forums .bbp-user-nicename, .single-topic .entry-content #bbpress-forums .bbp-topic-post-date, .single-topic .entry-content #bbpress-forums .bbp-topic-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-post-date, .single-topic .entry-content #bbpress-forums .bbp-reply-ip, .single-topic .entry-content #bbpress-forums .wporg-bbp-user-flag {3153 font-size: 0.8rem;3154 font-weight: normal;3155 margin: 0;3156 margin-right: 10px;3157 display: inline-block;3158 }3159 3160 .single-topic .entry-content #bbpress-forums .bbp-user-nicename span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-user-nicename span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-post-date span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-post-date span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-ip span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-topic-ip span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-post-date span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-post-date span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-ip span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .bbp-reply-ip span.bbp-reply-ip, .single-topic .entry-content #bbpress-forums .wporg-bbp-user-flag span.bbp-author-ip, .single-topic .entry-content #bbpress-forums .wporg-bbp-user-flag span.bbp-reply-ip {3161 font-size: 0.8rem;3162 font-weight: 400;3163 }3164 3165 .single-topic .entry-content #bbpress-forums div.bbp-forum-author .bbp-author-role,3166 .single-topic .entry-content #bbpress-forums div.bbp-reply-author .bbp-author-role,3167 .single-topic .entry-content #bbpress-forums div.bbp-topic-author .bbp-author-role {3168 font-size: 0.8rem;3169 font-style: normal;3170 }3171 3172 3220 .single-topic .entry-content #bbpress-forums div.bbp-forum-content, 3173 3221 .single-topic .entry-content #bbpress-forums div.bbp-reply-content, 3174 3222 .single-topic .entry-content #bbpress-forums div.bbp-topic-content { … … 3192 3240 .single-topic .entry-content #bbpress-forums ul.odd { 3193 3241 background: #fff; 3194 3242 border-top: 2px solid #eee; 3195 padding: 1.5rem 0;3196 3243 } 3197 3244 3198 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links,3199 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links {3200 bottom: 0;3201 right: 0;3202 background: #fbfbfb;3203 padding: 3px 10px;3204 }3205 3206 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a,3207 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a {3208 color: #0073aa;3209 text-transform: inherit;3210 font-size: 0.7rem;3211 }3212 3213 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-topic:hover span.bbp-admin-links a:hover,3214 .single-topic .entry-content #bbpress-forums li.bbp-body div.type-reply:hover span.bbp-admin-links a:hover {3215 text-decoration: underline;3216 }3217 3218 3245 .single-topic .entry-content #bbpress-forums .wporg-ratings { 3219 3246 background-color: #fbfbfb; 3220 3247 border: 1px solid #eee;