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

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


git-svn-id: http://core.svn.wordpress.org/trunk@27626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2014-03-27 19:17:15 +00:00
parent 26773541ab
commit 4038e52276
18 changed files with 36 additions and 36 deletions

View File

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

View File

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

View File

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

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long

View File

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

View File

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -197,8 +197,6 @@ div.mce-statusbar {
background: #eee;
background-image: -webkit-gradient(linear, right bottom, right top, from(#f6f6f6), to(#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);
}
@ -933,6 +931,7 @@ i.mce-i-wp_page:before {
top: 50%;
right: 50%;
z-index: 100105;
-webkit-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 {
display: inline-block;
width: 80%;
width: -webkit-calc(100% - 68px);
width: calc(100% - 68px);
}
@ -1243,6 +1243,7 @@ i.mce-i-wp_page:before {
@media screen and ( max-height: 520px ) {
#wp-link-wrap {
-webkit-transition: none;
transition: none;
}
@ -1272,6 +1273,7 @@ i.mce-i-wp_page:before {
#link-selector {
overflow: auto;
height: -webkit-calc(100% - 92px);
height: calc(100% - 92px);
padding-bottom: 2px;
}

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long