Ticket #3218: 3218.3.diff
File 3218.3.diff, 2.7 KB (added by , 7 years ago) |
---|
-
wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/form-reply.php
91 91 92 92 <p> 93 93 <label for="bbp_topic_tags"><?php esc_html_e( 'Tags:', 'wporg-forums' ); ?></label><br /> 94 <input type="text" value="<?php bbp_form_topic_tags(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> /> 94 <input type="text" value="<?php bbp_form_topic_tags(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" aria-describedby="bbp_topic_tags_description" <?php disabled( bbp_is_topic_spam() ); ?> /> 95 <p id="bbp_topic_tags_description" class="bbp_topic_tags_description"><?php esc_html_e( 'Separate tags with commas.', 'wporg-forums' ); ?></p> 95 96 </p> 96 97 97 98 <?php do_action( 'bbp_theme_after_reply_form_tags' ); ?> -
wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/form-topic.php
141 141 _e( 'Topic Tags:', 'wporg-forums' ); 142 142 } 143 143 ?></label><br /> 144 <input type="text" value="<?php bbp_form_topic_tags(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> /> 144 <input type="text" value="<?php bbp_form_topic_tags(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" aria-describedby="bbp_topic_tags_description" <?php disabled( bbp_is_topic_spam() ); ?> /> 145 <p id="bbp_topic_tags_description" class="bbp_topic_tags_description"><?php esc_html_e( 'Separate tags with commas.', 'wporg-forums' ); ?></p> 145 146 </p> 146 147 147 148 <?php do_action( 'bbp_theme_after_topic_form_tags' ); ?> -
wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/site/_bbpress.scss
656 656 } 657 657 } 658 658 659 .bbp_topic_tags_description { 660 font-size: .86em; 661 font-style: italic; 662 padding-left: 5px; 663 margin-top: -3px; 664 } 665 659 666 select { 660 667 -webkit-appearance: menulist; // Get those arrows back into the select box. 661 668 }