Twenty Fourteen: clean up vendor prefixes. Props iamtakashi, fixes #25305.

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


git-svn-id: http://core.svn.wordpress.org/trunk@25424 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2013-09-19 17:42:11 +00:00
parent c86b02b4c3
commit b531d76266
1 changed files with 45 additions and 38 deletions

View File

@ -38,8 +38,8 @@ table, caption, tbody, tfoot, thead, tr, th, td {
html {
font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
background: #fff;
@ -362,13 +362,15 @@ input[type="submit"]:active {
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
@ -387,6 +389,7 @@ input[type="password"],
textarea {
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 2px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #2b2b2b;
@ -439,11 +442,8 @@ button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
-webkit-transition: all 200ms ease-out;
transition: all 200ms ease-out;
}
/* Alignment */
@ -545,6 +545,7 @@ body {
z-index: 2;
}
.content-sidebar {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 36px 10px 0;
@ -642,6 +643,7 @@ body {
}
.search-toggle {
background-color: #24890d;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #fff;
@ -684,6 +686,7 @@ body {
left: 50%;
}
.search-box-wrapper {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
@ -728,6 +731,7 @@ body {
padding-left: 0;
}
.primary-navigation li {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
@ -835,6 +839,7 @@ body {
}
.mobile-navigation {
background-color: #000;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 14px;
@ -1158,11 +1163,8 @@ footer.entry-meta .entry-title a:hover {
height: auto;
}
.site .tag-links a {
-webkit-transition: all 0s ease-out;
-moz-transition: all 0s ease-out;
-ms-transition: all 0s ease-out;
-o-transition: all 0s ease-out;
transition: all 0s ease-out;
-webkit-transition: all 0ms ease-out;
transition: all 0ms ease-out;
}
.tag-links a {
background-color: #767676;
@ -1275,6 +1277,7 @@ footer.entry-meta .entry-title a:hover {
#featured-content {
background: #000 url(images/pattern-dark.png) repeat 0 0;
background-size: 5px 5px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
@ -1353,6 +1356,7 @@ footer.entry-meta .entry-title a:hover {
.ephemera {
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
clear: both;
@ -1547,6 +1551,7 @@ img.aligncenter,
max-width: 100%;
}
.wp-caption-text {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 12px;
@ -1721,6 +1726,7 @@ span > object {
.image-navigation .previous-image,
.image-navigation .next-image {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: none;
@ -2293,6 +2299,7 @@ span > object {
----------------------------------------------- */
.site-footer .widget-area {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}