Add some missing CSS prefixes. props grunt autoprefixer:core.

git-svn-id: https://develop.svn.wordpress.org/trunk@27790 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-03-27 19:16:35 +00:00
parent 8312fca652
commit 615e820420
5 changed files with 14 additions and 14 deletions

View File

@ -1838,6 +1838,7 @@ div.action-links {
line-height: 18px; line-height: 18px;
font-size: 14px; font-size: 14px;
text-decoration: none; text-decoration: none;
-webkit-transition: none;
transition: none; transition: none;
} }

View File

@ -469,6 +469,7 @@ body {
#customize-control-header_image .current .container { #customize-control-header_image .current .container {
overflow: hidden; overflow: hidden;
-webkit-border-radius: 2px;
border-radius: 2px; border-radius: 2px;
} }
@ -526,6 +527,7 @@ body {
#customize-control-header_image .random.placeholder { #customize-control-header_image .random.placeholder {
cursor: pointer; cursor: pointer;
-webkit-border-radius: 2px;
border-radius: 2px; border-radius: 2px;
height: 40px; height: 40px;
} }
@ -536,7 +538,6 @@ body {
#customize-control-header_image .placeholder:hover .dice { #customize-control-header_image .placeholder:hover .dice {
-webkit-animation: dice-color-change 3s infinite; -webkit-animation: dice-color-change 3s infinite;
-moz-animation: dice-color-change 3s infinite;
-ms-animation: dice-color-change 3s infinite; -ms-animation: dice-color-change 3s infinite;
animation: dice-color-change 3s infinite; animation: dice-color-change 3s infinite;
} }
@ -548,13 +549,6 @@ body {
100% { color: #d4b146; } 100% { color: #d4b146; }
} }
@-moz-keyframes dice-color-change {
0% { color: #d4b146; }
50% { color: #ef54b0; }
75% { color: #7190d3; }
100% { color: #d4b146; }
}
@-ms-keyframes dice-color-change { @-ms-keyframes dice-color-change {
0% { color: #d4b146; } 0% { color: #d4b146; }
50% { color: #ef54b0; } 50% { color: #ef54b0; }
@ -598,6 +592,7 @@ body {
#customize-control-header_image img { #customize-control-header_image img {
width: 100%; width: 100%;
-webkit-border-radius: 2px;
border-radius: 2px; border-radius: 2px;
} }

View File

@ -314,7 +314,6 @@
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
user-select: none; user-select: none;
-moz-outline: none;
outline: none; outline: none;
} }

View File

@ -1067,7 +1067,9 @@ body.folded .theme-overlay .theme-wrap {
.theme-navigation { .theme-navigation {
background: #fff; background: #fff;
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
color: #555; color: #555;
@ -1090,6 +1092,7 @@ body.folded .theme-overlay .theme-wrap {
display: inline; display: inline;
} }
.upload-theme { .upload-theme {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
display: none; display: none;
@ -1138,8 +1141,8 @@ body.show-upload-theme .upload-theme + .theme-navigation + .theme-browser {
display: inline-block; display: inline-block;
margin: 0 10px; margin: 0 10px;
padding: 15px 0; padding: 15px 0;
-moz-transition: border-color .1s ease-in;
-webkit-transition: border-color .1s ease-in; -webkit-transition: border-color .1s ease-in;
transition: border-color .1s ease-in;
} }
.theme-section.current, .theme-section.current,
.theme-filter.current { .theme-filter.current {
@ -1155,13 +1158,13 @@ body.show-upload-theme .upload-theme + .theme-navigation + .theme-browser {
display: inline-block; display: inline-block;
margin: 0 10px; margin: 0 10px;
padding: 4px 6px; padding: 4px 6px;
-moz-transition: color .1s ease-in, background .1s ease-in;
-webkit-transition: color .1s ease-in, background .1s ease-in; -webkit-transition: color .1s ease-in, background .1s ease-in;
transition: color .1s ease-in, background .1s ease-in; transition: color .1s ease-in, background .1s ease-in;
} }
body.more-filters-opened .more-filters, body.more-filters-opened .more-filters,
body.more-filters-opened .more-filters:before { body.more-filters-opened .more-filters:before {
background: rgb(46, 162, 204); background: rgb(46, 162, 204);
-webkit-border-radius: 2px;
border-radius: 2px; border-radius: 2px;
border: none; border: none;
color: #fff; color: #fff;
@ -1191,7 +1194,6 @@ body.more-filters-opened .more-filters:before {
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
vertical-align: top; vertical-align: top;
-moz-transition: color .1s ease-in 0;
-webkit-transition: color .1s ease-in 0; -webkit-transition: color .1s ease-in 0;
transition: color .1s ease-in 0; transition: color .1s ease-in 0;
text-align: center; text-align: center;
@ -1210,6 +1212,7 @@ body.more-filters-opened .more-filters-container {
display: block; display: block;
} }
.more-filters-container .filters-group { .more-filters-container .filters-group {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
float: left; float: left;

View File

@ -197,8 +197,6 @@ div.mce-statusbar {
background: #eee; background: #eee;
background-image: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(#e3e3e3)); background-image: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(#e3e3e3));
background-image: -webkit-linear-gradient(bottom, #f6f6f6, #e3e3e3); background-image: -webkit-linear-gradient(bottom, #f6f6f6, #e3e3e3);
background-image: -moz-linear-gradient(bottom, #f6f6f6, #e3e3e3);
background-image: -o-linear-gradient(bottom, #f6f6f6, #e3e3e3);
background-image: linear-gradient(to top, #f6f6f6, #e3e3e3); background-image: linear-gradient(to top, #f6f6f6, #e3e3e3);
} }
@ -933,6 +931,7 @@ i.mce-i-wp_page:before {
top: 50%; top: 50%;
left: 50%; left: 50%;
z-index: 100105; z-index: 100105;
-webkit-transition: height 0.2s, margin-top 0.2s;
transition: height 0.2s, margin-top 0.2s; transition: height 0.2s, margin-top 0.2s;
} }
@ -1153,6 +1152,7 @@ i.mce-i-wp_page:before {
#wp-link .item-title { #wp-link .item-title {
display: inline-block; display: inline-block;
width: 80%; width: 80%;
width: -webkit-calc(100% - 68px);
width: calc(100% - 68px); width: calc(100% - 68px);
} }
@ -1243,6 +1243,7 @@ i.mce-i-wp_page:before {
@media screen and ( max-height: 520px ) { @media screen and ( max-height: 520px ) {
#wp-link-wrap { #wp-link-wrap {
-webkit-transition: none;
transition: none; transition: none;
} }
@ -1272,6 +1273,7 @@ i.mce-i-wp_page:before {
#link-selector { #link-selector {
overflow: auto; overflow: auto;
height: -webkit-calc(100% - 92px);
height: calc(100% - 92px); height: calc(100% - 92px);
padding-bottom: 2px; padding-bottom: 2px;
} }