Make RSS and text widget controls the same width. Props mdawaffe. fixes #6205

git-svn-id: https://develop.svn.wordpress.org/trunk@7278 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-03-14 06:30:41 +00:00
parent df34bb4747
commit fe4286a905
1 changed files with 2 additions and 2 deletions

View File

@ -647,7 +647,7 @@ function wp_widget_text_register() {
if ( !$options = get_option('widget_text') )
$options = array();
$widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML'));
$control_ops = array('width' => 460, 'height' => 350, 'id_base' => 'text');
$control_ops = array('width' => 400, 'height' => 350, 'id_base' => 'text');
$name = __('Text');
$id = false;
@ -1300,7 +1300,7 @@ function wp_widget_rss_register() {
if ( !$options = get_option('widget_rss') )
$options = array();
$widget_ops = array('classname' => 'widget_rss', 'description' => __( 'Entries from any RSS or Atom feed' ));
$control_ops = array('width' => 410, 'height' => 200, 'id_base' => 'rss');
$control_ops = array('width' => 400, 'height' => 200, 'id_base' => 'rss');
$name = __('RSS');
$id = false;