Changeset 27790
- Timestamp:
- 03/27/2014 07:16:35 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r27765 r27790 1839 1839 font-size: 14px; 1840 1840 text-decoration: none; 1841 -webkit-transition: none; 1841 1842 transition: none; 1842 1843 } -
trunk/src/wp-admin/css/customize-controls.css
r27722 r27790 470 470 #customize-control-header_image .current .container { 471 471 overflow: hidden; 472 -webkit-border-radius: 2px; 472 473 border-radius: 2px; 473 474 } … … 527 528 #customize-control-header_image .random.placeholder { 528 529 cursor: pointer; 530 -webkit-border-radius: 2px; 529 531 border-radius: 2px; 530 532 height: 40px; … … 537 539 #customize-control-header_image .placeholder:hover .dice { 538 540 -webkit-animation: dice-color-change 3s infinite; 539 -moz-animation: dice-color-change 3s infinite;540 541 -ms-animation: dice-color-change 3s infinite; 541 542 animation: dice-color-change 3s infinite; … … 549 550 } 550 551 551 @-moz-keyframes dice-color-change {552 0% { color: #d4b146; }553 50% { color: #ef54b0; }554 75% { color: #7190d3; }555 100% { color: #d4b146; }556 }557 558 552 @-ms-keyframes dice-color-change { 559 553 0% { color: #d4b146; } … … 599 593 #customize-control-header_image img { 600 594 width: 100%; 595 -webkit-border-radius: 2px; 601 596 border-radius: 2px; 602 597 } -
trunk/src/wp-admin/css/customize-widgets.css
r27702 r27790 315 315 -ms-user-select: none; 316 316 user-select: none; 317 -moz-outline: none;318 317 outline: none; 319 318 } -
trunk/src/wp-admin/css/themes.css
r27774 r27790 1068 1068 .theme-navigation { 1069 1069 background: #fff; 1070 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); 1070 1071 box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); 1072 -webkit-box-sizing: border-box; 1071 1073 -moz-box-sizing: border-box; 1072 1074 box-sizing: border-box; … … 1091 1093 } 1092 1094 .upload-theme { 1095 -webkit-box-sizing: border-box; 1093 1096 -moz-box-sizing: border-box; 1094 1097 box-sizing: border-box; … … 1139 1142 margin: 0 10px; 1140 1143 padding: 15px 0; 1141 -moz-transition: border-color .1s ease-in;1142 1144 -webkit-transition: border-color .1s ease-in; 1145 transition: border-color .1s ease-in; 1143 1146 } 1144 1147 .theme-section.current, … … 1156 1159 margin: 0 10px; 1157 1160 padding: 4px 6px; 1158 -moz-transition: color .1s ease-in, background .1s ease-in;1159 1161 -webkit-transition: color .1s ease-in, background .1s ease-in; 1160 1162 transition: color .1s ease-in, background .1s ease-in; … … 1163 1165 body.more-filters-opened .more-filters:before { 1164 1166 background: rgb(46, 162, 204); 1167 -webkit-border-radius: 2px; 1165 1168 border-radius: 2px; 1166 1169 border: none; … … 1192 1195 font-style: normal; 1193 1196 vertical-align: top; 1194 -moz-transition: color .1s ease-in 0;1195 1197 -webkit-transition: color .1s ease-in 0; 1196 1198 transition: color .1s ease-in 0; … … 1211 1213 } 1212 1214 .more-filters-container .filters-group { 1215 -webkit-box-sizing: border-box; 1213 1216 -moz-box-sizing: border-box; 1214 1217 box-sizing: border-box; -
trunk/src/wp-includes/css/editor.css
r27778 r27790 198 198 background-image: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(#e3e3e3)); 199 199 background-image: -webkit-linear-gradient(bottom, #f6f6f6, #e3e3e3); 200 background-image: -moz-linear-gradient(bottom, #f6f6f6, #e3e3e3);201 background-image: -o-linear-gradient(bottom, #f6f6f6, #e3e3e3);202 200 background-image: linear-gradient(to top, #f6f6f6, #e3e3e3); 203 201 } … … 934 932 left: 50%; 935 933 z-index: 100105; 934 -webkit-transition: height 0.2s, margin-top 0.2s; 936 935 transition: height 0.2s, margin-top 0.2s; 937 936 } … … 1154 1153 display: inline-block; 1155 1154 width: 80%; 1155 width: -webkit-calc(100% - 68px); 1156 1156 width: calc(100% - 68px); 1157 1157 } … … 1244 1244 @media screen and ( max-height: 520px ) { 1245 1245 #wp-link-wrap { 1246 -webkit-transition: none; 1246 1247 transition: none; 1247 1248 } … … 1273 1274 #link-selector { 1274 1275 overflow: auto; 1276 height: -webkit-calc(100% - 92px); 1275 1277 height: calc(100% - 92px); 1276 1278 padding-bottom: 2px;
Note: See TracChangeset
for help on using the changeset viewer.