Autoprefixer for [34634].

Normally when there are multiple comma-separated values in CSS, each one would go on its own indented line. However, Autoprefixer appears to be tripping up on gradients at the moment, so it's going to stay on one line until we investigate upstream.

see #33299.

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


git-svn-id: http://core.svn.wordpress.org/trunk@34601 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2015-09-27 19:17:25 +00:00
parent f78170934a
commit 9cfddb6c3b
7 changed files with 11 additions and 5 deletions

View File

@ -1314,6 +1314,7 @@ div.error p,
}
.notice-alt {
-webkit-box-shadow: none;
box-shadow: none;
}

View File

@ -1314,6 +1314,7 @@ div.error p,
}
.notice-alt {
-webkit-box-shadow: none;
box-shadow: none;
}

View File

@ -291,8 +291,10 @@ ul.wp-tab-bar li {
max-width: 100%;
height: auto;
width: auto;
background-image: -webkit-linear-gradient(-45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
background-image: linear-gradient(-45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
background-position: 100% 0, 10px 10px;
-webkit-background-size: 20px 20px;
background-size: 20px 20px;
}

View File

@ -291,8 +291,10 @@ ul.wp-tab-bar li {
max-width: 100%;
height: auto;
width: auto;
background-image: -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
background-image: linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
background-position: 0 0, 10px 10px;
-webkit-background-size: 20px 20px;
background-size: 20px 20px;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

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