Customize: Run autoprefixer following [37476]

Adds prefixes to box-shadow and transition properties.

See #34893


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


git-svn-id: http://core.svn.wordpress.org/trunk@37550 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson 2016-05-27 05:15:28 +00:00
parent 58da002b34
commit e7c508cb40
5 changed files with 7 additions and 3 deletions

View File

@ -636,7 +636,9 @@ p.customize-section-description {
#customize-controls .customize-control-widget_form.has-error .widget .widget-top,
.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle {
-webkit-box-shadow: inset 0 0 0 2px #dc3232;
box-shadow: inset 0 0 0 2px #dc3232;
-webkit-transition: .15s box-shadow linear;
transition: .15s box-shadow linear;
}

File diff suppressed because one or more lines are too long

View File

@ -636,7 +636,9 @@ p.customize-section-description {
#customize-controls .customize-control-widget_form.has-error .widget .widget-top,
.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle {
-webkit-box-shadow: inset 0 0 0 2px #dc3232;
box-shadow: inset 0 0 0 2px #dc3232;
-webkit-transition: .15s box-shadow linear;
transition: .15s box-shadow linear;
}

File diff suppressed because one or more lines are too long

View File

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