From b1d7aea36313d8b2cbd407eac118d4e3228ada7c Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 5 Feb 2008 07:45:40 +0000 Subject: [PATCH] Add beginnings of bulk tag delete. see #5684 git-svn-id: https://develop.svn.wordpress.org/trunk@6727 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit-tags.php | 18 +++++++++++++----- wp-admin/includes/template.php | 1 + wp-admin/wp-admin.css | 13 +++++++++++++ 3 files changed, 27 insertions(+), 5 deletions(-) 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; }