Dev/build tools: Use grunt-autoprefixer for CSS vendor prefixes.

We'll be using it for two distinct tasks:
 * Core CSS files will keep prefixes. `grunt autoprefixer:core` will update files directly in src/ as a pre-commit step, rather than doing it on build.
 * Color CSS files will receive prefixes when they are built.

This commit:
 * Adds prefixes we were missing to core CSS.
 * Removes prefixes that we no longer need from core CSS.
 * Removes all prefixes from colors CSS.

props ocean90.
fixes #27078.


git-svn-id: https://develop.svn.wordpress.org/trunk@27174 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2014-02-13 08:29:16 +00:00
parent 12b13fe7cf
commit 01b809bf2b
16 changed files with 333 additions and 293 deletions

View File

@@ -68,6 +68,7 @@ abbr {
#logo a {
background-image: url('../images/w-logo-blue.png?ver=20131202');
background-image: none, url('../images/wordpress-logo.svg?ver=20131107');
-webkit-background-size: 80px 80px;
background-size: 80px 80px;
background-position: center top;
background-repeat: no-repeat;
@@ -99,9 +100,8 @@ textarea {
border: 1px solid #dfdfdf;
font-family: "Open Sans", sans-serif;
width: 100%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box; /* ie8 only */
-moz-box-sizing: border-box;
box-sizing: border-box;
}
@@ -142,6 +142,7 @@ textarea {
font-size: 15px;
padding: 3px 5px;
border: 1px solid #ddd;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
}
@@ -304,8 +305,9 @@ body.rtl,
padding: 7px 10px;
display: block;
max-width: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
}