UI: Restrict textarea resizing to vertical to prevent ugliness.
props tyxla, MatheusFD. fixes #33400. Built from https://develop.svn.wordpress.org/trunk@33890 git-svn-id: http://core.svn.wordpress.org/trunk@33859 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ba056692a6
commit
89de754f0e
|
@ -195,6 +195,7 @@ textarea {
|
|||
overflow: auto;
|
||||
padding: 2px 6px;
|
||||
line-height: 1.4;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.wp-admin input[type="file"] {
|
||||
|
|
|
@ -195,6 +195,7 @@ textarea {
|
|||
overflow: auto;
|
||||
padding: 2px 6px;
|
||||
line-height: 1.4;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.wp-admin input[type="file"] {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-33889';
|
||||
$wp_version = '4.4-alpha-33890';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue