From 2efa7589660e55a3e2fa1c50844f49708ef2d039 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 9 Jun 2008 03:53:30 +0000 Subject: [PATCH] Fix the tag suggest drop-down list for Press This. Props azaozz. see #7066 git-svn-id: https://develop.svn.wordpress.org/trunk@8062 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/css/press-this.css | 45 ++++++++++++++++++++++++++++--------- 1 file changed, 35 insertions(+), 10 deletions(-) diff --git a/wp-admin/css/press-this.css b/wp-admin/css/press-this.css index 98af86ded2..07d158e934 100644 --- a/wp-admin/css/press-this.css +++ b/wp-admin/css/press-this.css @@ -352,20 +352,45 @@ padding: 0; } .video_split #extra_fields { -width: 27%; -height: 300px; -float: left; + width: 27%; + height: 300px; + float: left; } #embed_code { -border: 0; -width: 99%; -height: 200px; + border: 0; + width: 99%; + height: 200px; } .video_split .editor_area { -width: 70%; -float: right; + width: 70%; + float: right; } #jaxtag { -clear: both; -} \ No newline at end of file + clear: both; +} + +.ac_results { + padding: 0; + margin: 0; + list-style: none; + position: absolute; + z-index: 10000; + display: none; + border-width: 1px; + border-style: solid; +} + +.ac_results li { + padding: 2px 5px; + white-space: nowrap; + text-align: left; +} + +.ac_over { + cursor: pointer; +} + +.ac_match { + text-decoration: underline; +}