Making WordPress.org

Ticket #3218: 3218.3.diff

File 3218.3.diff, 2.7 KB (added by Mirucon, 7 years ago)

Merged approach from @audrasjb

  • wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/form-reply.php

     
    9191
    9292                                                <p>
    9393                                                        <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>
    9596                                                </p>
    9697
    9798                                                <?php do_action( 'bbp_theme_after_reply_form_tags' ); ?>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/form-topic.php

     
    141141                                                                _e( 'Topic Tags:', 'wporg-forums' );
    142142                                                        }
    143143                                                ?></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>
    145146                                        </p>
    146147
    147148                                        <?php do_action( 'bbp_theme_after_topic_form_tags' ); ?>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/site/_bbpress.scss

     
    656656        }
    657657}
    658658
     659.bbp_topic_tags_description {
     660        font-size: .86em;
     661        font-style: italic;
     662        padding-left: 5px;
     663        margin-top: -3px;
     664}
     665
    659666select {
    660667        -webkit-appearance: menulist; // Get those arrows back into the select box.
    661668}