diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css index 64b98ae99f..c4444111fc 100644 --- a/src/wp-admin/css/edit.css +++ b/src/wp-admin/css/edit.css @@ -574,7 +574,7 @@ span.wp-media-buttons-icon:before { position: absolute; } -.tagchecklist > span { +.tagchecklist > li { float: left; margin-right: 25px; font-size: 13px; @@ -1051,6 +1051,14 @@ p.popular-tags a { margin: 2px 0 12px; } +.the-tagcloud ul { + margin: 0; +} + +.the-tagcloud ul li { + display: inline-block; +} + /* Suggest.js autocomplete, no more used by core. */ .ac_results { display: none; @@ -1440,7 +1448,7 @@ table.links-table { margin: 25px 10px; } - .tagchecklist > span { + .tagchecklist > li { font-size: 16px; line-height: 1.4; } diff --git a/src/wp-admin/css/ie.css b/src/wp-admin/css/ie.css index df8d792494..23b90eb733 100644 --- a/src/wp-admin/css/ie.css +++ b/src/wp-admin/css/ie.css @@ -441,7 +441,7 @@ div#dashboard-widgets { padding-right: 1px; } -.tagchecklist > span, .tagchecklist .ntdelbutton { +.tagchecklist > li, .tagchecklist .ntdelbutton { display: inline-block; display: block; } diff --git a/src/wp-admin/css/press-this.css b/src/wp-admin/css/press-this.css index bafea24d14..2c4a79d75c 100644 --- a/src/wp-admin/css/press-this.css +++ b/src/wp-admin/css/press-this.css @@ -765,7 +765,9 @@ dd { /* Tags */ .tagchecklist { + margin: 0; padding: 16px 28px 5px; + list-style: none; } .tagchecklist:before, @@ -778,7 +780,7 @@ dd { clear: both; } -.tagchecklist > span { +.tagchecklist > li { float: left; margin-right: 25px; font-size: 13px; @@ -788,7 +790,7 @@ dd { } @media (max-width: 600px) { - .tagchecklist > span { + .tagchecklist > li { margin-bottom: 15px; font-size: 16px; line-height: 1.3; @@ -877,6 +879,16 @@ dd { padding: 16px; } +.the-tagcloud ul { + margin: 0; + padding: 0; + list-style: none; +} + +.the-tagcloud ul li { + display: inline-block; +} + .the-tagcloud a { text-decoration: none; outline: 0; diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php index 3f3c0fc7e8..80fc95286c 100644 --- a/src/wp-admin/includes/ajax-actions.php +++ b/src/wp-admin/includes/ajax-actions.php @@ -963,7 +963,7 @@ function wp_ajax_get_tagcloud() { } // We need raw tag names here, so don't filter the output - $return = wp_generate_tag_cloud( $tags, array('filter' => 0) ); + $return = wp_generate_tag_cloud( $tags, array( 'filter' => 0, 'format' => 'list' ) ); if ( empty($return) ) wp_die( 0 ); diff --git a/src/wp-admin/includes/class-wp-press-this.php b/src/wp-admin/includes/class-wp-press-this.php index 7f268ea028..e5351c42e3 100644 --- a/src/wp-admin/includes/class-wp-press-this.php +++ b/src/wp-admin/includes/class-wp-press-this.php @@ -947,7 +947,7 @@ class WP_Press_This { ?> -
+ labels->no_terms; ?>

-
+

diff --git a/src/wp-admin/js/tags-box.js b/src/wp-admin/js/tags-box.js index 3867c7d6f0..0c508027f8 100644 --- a/src/wp-admin/js/tags-box.js +++ b/src/wp-admin/js/tags-box.js @@ -74,15 +74,15 @@ var tagBox, array_unique_noempty; tagchecklist.empty(); $.each( current_tags, function( key, val ) { - var span, xbutton; + var listItem, xbutton; val = $.trim( val ); if ( ! val ) return; - // Create a new span, and ensure the text is properly escaped. - span = $('').text( val ); + // Create a new list item, and ensure the text is properly escaped. + listItem = $( '
  • ' ).text( val ); // If tags editing isn't disabled, create the X button. if ( ! disabled ) { @@ -92,7 +92,7 @@ var tagBox, array_unique_noempty; */ xbutton = $( '' ); xbutton.on( 'click keypress', function( e ) { @@ -112,11 +112,11 @@ var tagBox, array_unique_noempty; } }); - span.prepend( ' ' ).prepend( xbutton ); + listItem.prepend( ' ' ).prepend( xbutton ); } - // Append the span to the tag list. - tagchecklist.append( span ); + // Append the list item to the tag list. + tagchecklist.append( listItem ); }); // The buttons list is built now, give feedback to screen reader users. tagBox.screenReadersMessage(); @@ -166,7 +166,7 @@ var tagBox, array_unique_noempty; return; } - r = $( '

    ' + r + '

    ' ); + r = $( '
    ' + r + '
    ' ); $( 'a', r ).click( function() { tagBox.userAction = 'add';