Make WordPress Core

Changeset 7278


Ignore:
Timestamp:
03/14/2008 06:30:41 AM (17 years ago)
Author:
ryan
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/widgets.php

    r7277 r7278  
    648648        $options = array();
    649649    $widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML'));
    650     $control_ops = array('width' => 460, 'height' => 350, 'id_base' => 'text');
     650    $control_ops = array('width' => 400, 'height' => 350, 'id_base' => 'text');
    651651    $name = __('Text');
    652652
     
    13011301        $options = array();
    13021302    $widget_ops = array('classname' => 'widget_rss', 'description' => __( 'Entries from any RSS or Atom feed' ));
    1303     $control_ops = array('width' => 410, 'height' => 200, 'id_base' => 'rss');
     1303    $control_ops = array('width' => 400, 'height' => 200, 'id_base' => 'rss');
    13041304    $name = __('RSS');
    13051305
Note: See TracChangeset for help on using the changeset viewer.