diff --git a/src/wp-includes/widgets/class-wp-widget-custom-html.php b/src/wp-includes/widgets/class-wp-widget-custom-html.php
index 93fb579..cda6a9f 100644
a
|
b
|
class WP_Widget_Custom_HTML extends WP_Widget { |
47 | 47 | 'customize_selective_refresh' => true, |
48 | 48 | ); |
49 | 49 | $control_ops = array( |
50 | | 'width' => 400, |
| 50 | 'width' => 250, |
51 | 51 | 'height' => 350, |
52 | 52 | ); |
53 | 53 | parent::__construct( 'custom_html', __( 'Custom HTML' ), $widget_ops, $control_ops ); |
diff --git a/src/wp-includes/widgets/class-wp-widget-rss.php b/src/wp-includes/widgets/class-wp-widget-rss.php
index 570e7bb..7e2bd21 100644
a
|
b
|
class WP_Widget_RSS extends WP_Widget { |
27 | 27 | 'customize_selective_refresh' => true, |
28 | 28 | ); |
29 | 29 | $control_ops = array( |
30 | | 'width' => 400, |
| 30 | 'width' => 250, |
31 | 31 | 'height' => 200, |
32 | 32 | ); |
33 | 33 | parent::__construct( 'rss', __( 'RSS' ), $widget_ops, $control_ops ); |
diff --git a/src/wp-includes/widgets/class-wp-widget-text.php b/src/wp-includes/widgets/class-wp-widget-text.php
index c70c258..d2aaeff 100644
a
|
b
|
class WP_Widget_Text extends WP_Widget { |
36 | 36 | 'customize_selective_refresh' => true, |
37 | 37 | ); |
38 | 38 | $control_ops = array( |
39 | | 'width' => 400, |
| 39 | 'width' => 250, |
40 | 40 | 'height' => 350, |
41 | 41 | ); |
42 | 42 | parent::__construct( 'text', __( 'Text' ), $widget_ops, $control_ops ); |