diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php index f91b7ae3f4..db6f6e6448 100644 --- a/wp-admin/edit-tags.php +++ b/wp-admin/edit-tags.php @@ -67,6 +67,8 @@ break; default: wp_enqueue_script( 'admin-tags' ); +wp_enqueue_script('admin-forms'); + require_once ('admin-header.php'); $messages[1] = __('Tag added.'); @@ -81,22 +83,27 @@ $messages[5] = __('Tag not updated.');
+ +

add new)'), '#addtag') ?>

- - - - +
+
- +
+ + @@ -115,6 +122,7 @@ $count = tag_rows( $pagenum, $tagsperpage, $searchterms ); ?>
+
term_id . '"' . $class . '>'; + $out .= ' '; $out .= '' . $tag->term_id . ''; $out .= '' . apply_filters( 'term_name', $tag->name ) . ''; diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index cc4adf5248..e4cb9a1052 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -1389,6 +1389,19 @@ ul.categorychecklist li { margin-left: 18px; } +/* pasitioning etc. */ +form#tags-filter { + position: relative; +} + +p#tag-search { + position: absolute; + right: 0; + top: 0; + margin: 0; +} + + /* Global classes */ .wp-hidden-children .wp-hidden-child { display: none; } .wp-no-js-hidden { display: none; }