Autoprefix box sizing

Results are from running grunt autoprefix.  Needed for FF before 29 and Safari before 5.1.

fixes #27553


Built from https://develop.svn.wordpress.org/trunk@30070


git-svn-id: http://core.svn.wordpress.org/trunk@30070 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Jorbin 2014-10-28 20:48:24 +00:00
parent 0a790fef4d
commit 980adcadab
5 changed files with 7 additions and 3 deletions

View File

@ -828,6 +828,8 @@ i.mce-i-hr:before {
.wp-switch-editor { .wp-switch-editor {
float: right; float: right;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box; box-sizing: content-box;
position: relative; position: relative;
top: 1px; top: 1px;

File diff suppressed because one or more lines are too long

View File

@ -828,6 +828,8 @@ i.mce-i-hr:before {
.wp-switch-editor { .wp-switch-editor {
float: left; float: left;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box; box-sizing: content-box;
position: relative; position: relative;
top: 1px; top: 1px;

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.1-alpha-30069'; $wp_version = '4.1-alpha-30070';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.