Prevent HTML editor from being resized horizontally. props nomulous, fixes #13064
git-svn-id: http://svn.automattic.com/wordpress/trunk@14220 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
356a50d1f0
commit
7341a67e76
File diff suppressed because one or more lines are too long
|
@ -504,6 +504,7 @@ textarea.all-options, input.all-options {
|
||||||
line-height: 150%;
|
line-height: 150%;
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
resize: vertical;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
-khtml-box-sizing: border-box;
|
-khtml-box-sizing: border-box;
|
||||||
|
|
|
@ -443,7 +443,7 @@ function wp_default_styles( &$styles ) {
|
||||||
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
||||||
$colors_version = '20100418';
|
$colors_version = '20100418';
|
||||||
|
|
||||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20100411' );
|
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20100424' );
|
||||||
|
|
||||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20100219' );
|
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20100219' );
|
||||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||||
|
|
Loading…
Reference in New Issue