Ticket #7728: 7728.patch
File 7728.patch, 4.4 KB (added by , 7 years ago) |
---|
-
src/bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php
141 141 <script type="text/html" id="tmpl-bp-messages-preview"> 142 142 <# if ( undefined !== data.content ) { #> 143 143 144 <h 4 class=" message-title preview-thread-title"><?php esc_html_e( 'Active conversation:', 'buddypress' ); ?><span class="messages-title"> <# print( data.subject ); #></span></h4>144 <h2 class="message-title preview-thread-title"><?php esc_html_e( 'Active conversation:', 'buddypress' ); ?><span class="messages-title"> <# print( data.subject ); #></span></h2> 145 145 <div class="preview-content"> 146 146 <header class="preview-pane-header"> 147 147 … … 192 192 </script> 193 193 194 194 <script type="text/html" id="tmpl-bp-messages-single-header"> 195 <h 4 id="message-subject" class="message-title single-thread-title"><# print( data.subject ); #></h4>195 <h2 id="message-subject" class="message-title single-thread-title"><# print( data.subject ); #></h2> 196 196 <header class="single-message-thread-header"> 197 197 <# if ( undefined !== data.recipients ) { #> 198 198 <dl class="thread-participants"> -
src/bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php
83 83 if ( 'crop-image' === bp_get_avatar_admin_step() ) : 84 84 ?> 85 85 86 <h 4><?php _e( 'Crop Group Profile Photo', 'buddypress' ); ?></h4>86 <h2><?php _e( 'Crop Group Profile Photo', 'buddypress' ); ?></h2> 87 87 88 88 <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-to-crop" class="avatar" alt="<?php esc_attr_e( 'Profile photo to crop', 'buddypress' ); ?>" /> 89 89 -
src/bp-templates/bp-nouveau/buddypress/members/single/plugins.php
26 26 27 27 <?php if ( has_action( 'bp_template_title' ) ) : ?> 28 28 29 <h 3><?php bp_nouveau_plugin_hook( 'title' ); ?></h3>29 <h2><?php bp_nouveau_plugin_hook( 'title' ); ?></h2> 30 30 31 31 <?php endif; ?> 32 32 -
src/bp-templates/bp-nouveau/css/buddypress-rtl.css
3128 3128 display: none; 3129 3129 } 3130 3130 3131 .bp-messages-content #thread-preview h 4:first-child,3132 .bp-messages-content #bp-message-thread-header h 4:first-child {3131 .bp-messages-content #thread-preview h2:first-child, 3132 .bp-messages-content #bp-message-thread-header h2:first-child { 3133 3133 background-color: #eaeaea; 3134 3134 color: #555; 3135 font-weight: 700; 3135 3136 margin: 0; 3136 3137 padding: 0.5em; 3137 3138 } -
src/bp-templates/bp-nouveau/css/buddypress.css
3128 3128 display: none; 3129 3129 } 3130 3130 3131 .bp-messages-content #thread-preview h 4:first-child,3132 .bp-messages-content #bp-message-thread-header h 4:first-child {3131 .bp-messages-content #thread-preview h2:first-child, 3132 .bp-messages-content #bp-message-thread-header h2:first-child { 3133 3133 background-color: #eaeaea; 3134 3134 color: #555; 3135 font-weight: 700; 3135 3136 margin: 0; 3136 3137 padding: 0.5em; 3137 3138 } -
src/bp-templates/bp-nouveau/sass/_nouveau_messages.scss
394 394 display: none; 395 395 } 396 396 397 #thread-preview h 4:first-child,398 #bp-message-thread-header h 4:first-child {397 #thread-preview h2:first-child, 398 #bp-message-thread-header h2:first-child { 399 399 background-color: $light-grey; 400 400 color: $bp-text; 401 font-weight: 700; 401 402 margin: 0; 402 403 padding: 0.5em; 403 404 }