mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-30 23:30:05 +00:00
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:
@@ -31,7 +31,7 @@
|
||||
background-color: #eee;
|
||||
z-index: 1000001;
|
||||
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3);
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.3);
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap.fallback #wp-auth-check {
|
||||
@@ -41,6 +41,7 @@
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-form {
|
||||
background: url(../images/wpspin-2x.gif) no-repeat center center;
|
||||
-webkit-background-size: 16px 16px;
|
||||
background-size: 16px 16px;
|
||||
height: 100%;
|
||||
}
|
||||
@@ -71,6 +72,7 @@
|
||||
width: 22px;
|
||||
color: #777;
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close:hover:before {
|
||||
@@ -95,4 +97,4 @@
|
||||
#wp-auth-check-wrap.fallback .wp-auth-fallback,
|
||||
#wp-auth-check-wrap.fallback .wp-auth-check-close {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user