Changeset 43784
- Timestamp:
- 10/22/2018 05:03:38 AM (6 years ago)
- Location:
- branches/5.0/src
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-admin/css/about.css
r42802 r43784 169 169 170 170 .about-wrap [class$="-col"] { 171 display: -webkit-box;172 171 display: flex; 173 -webkit-box-pack: justify;174 172 justify-content: space-between; 175 173 flex-wrap: wrap; … … 192 190 193 191 .about-wrap [class$="-col"] .col { 194 -webkit-box-flex: 1;195 192 flex: 1; 196 193 } … … 202 199 203 200 .about-wrap .three-col .col { 204 -webkit-align-self: flex-start;205 201 align-self: flex-start; 206 202 min-width: 31%; … … 260 256 261 257 .about-wrap .two-col-text { 262 -webkit-column-count: 2;263 258 column-count: 2; 264 -webkit-column-gap: 40px;265 259 column-gap: 40px; 266 260 } … … 382 376 -ms-grid-column: 2; 383 377 grid-column: 2; 384 display: -webkit-box;385 378 display: flex; 386 -webkit-box-pack: justify;387 379 justify-content: space-between; 388 -webkit-box-align: start;389 380 align-items: flex-start; 390 -webkit-box-orient: horizontal;391 -webkit-box-direction: normal;392 381 flex-flow: row wrap; 393 -webkit-box-flex: 2;394 382 flex-grow: 2; 395 383 flex-shrink: 0; … … 397 385 398 386 .about-wrap .floating-header-section .section-item { 399 -webkit-box-flex: 1;400 387 flex-grow: 1; 401 388 max-width: calc(50% - 30px); … … 426 413 427 414 .about-wrap .floating-header-section.has-long-title .section-content { 428 -webkit-box-pack: start;429 415 justify-content: flex-start; 430 416 } … … 549 535 @media screen and (max-width: 782px) { 550 536 .about-wrap .two-col-text { 551 -webkit-column-count: 1;552 537 column-count: 1; 553 538 } -
branches/5.0/src/wp-admin/css/admin-menu.css
r41362 r43784 598 598 .folded #collapse-button .collapse-button-icon:after, 599 599 .rtl #collapse-button .collapse-button-icon:after { 600 -webkit-transform: rotate(180deg);601 600 transform: rotate(180deg); 602 601 } 603 602 604 603 .rtl.folded #collapse-button .collapse-button-icon:after { 605 -webkit-transform: none;606 604 transform: none; 607 605 } … … 729 727 /* rtl:ignore */ 730 728 .auto-fold #collapse-button .collapse-button-icon:after { 731 -webkit-transform: rotate(180deg);732 729 transform: rotate(180deg); 733 730 } 734 731 735 732 .rtl.auto-fold #collapse-button .collapse-button-icon:after { 736 -webkit-transform: none;737 733 transform: none; 738 734 } -
branches/5.0/src/wp-admin/css/color-picker.css
r41568 r43784 51 51 .wp-color-result:active { 52 52 /* See Trac ticket #39662 */ 53 -webkit-transform: none !important;54 53 transform: none !important; 55 54 } -
branches/5.0/src/wp-admin/css/common.css
r43502 r43784 1118 1118 background: transparent; 1119 1119 box-shadow: none; 1120 -webkit-transform: none;1121 1120 transform: none; 1122 1121 } … … 1509 1508 .button.updating-message:before, 1510 1509 .button.installing:before { 1511 -webkit-animation: rotation 2s infinite linear;1512 1510 animation: rotation 2s infinite linear; 1513 1511 } … … 1682 1680 #screen-meta-links .show-settings:active { 1683 1681 box-shadow: none; 1684 -webkit-transform: none;1685 1682 transform: none; 1686 1683 } … … 2471 2468 2472 2469 .rtl .star-rating .star-half { 2473 -webkit-transform: rotateY(180deg);2474 2470 transform: rotateY(180deg); 2475 2471 } … … 2920 2916 background: #fcfcfc url(../images/spinner.gif) no-repeat center; 2921 2917 background-size: 20px 20px; 2922 -webkit-transform: translateZ(0);2923 2918 transform: translateZ(0); 2924 2919 } -
branches/5.0/src/wp-admin/css/customize-controls.css
r42133 r43784 158 158 width: 30px; 159 159 float: left; 160 -webkit-transform: none;161 160 transform: none; 162 161 margin-top: 0; … … 635 634 padding: 0; 636 635 box-sizing: border-box; 637 transition: 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1); 638 transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); 639 transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1), 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ 636 transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ 640 637 } 641 638 … … 651 648 max-height: none; 652 649 overflow: auto; 653 -webkit-transform: none;654 650 transform: none; 655 651 } … … 663 659 max-height: none; 664 660 overflow: hidden; 665 -webkit-transform: translateX(100%);666 661 transform: translateX(100%); 667 662 } … … 669 664 #customize-theme-controls .customize-pane-child.open, 670 665 #customize-theme-controls .customize-pane-child.current-panel { 671 -webkit-transform: none;672 666 transform: none; 673 667 } … … 681 675 height: 0; 682 676 overflow: hidden; 683 -webkit-transform: translateX(-100%);684 677 transform: translateX(-100%); 685 678 } … … 1076 1069 z-index: 10; 1077 1070 background: #eee; 1078 display: -webkit-box;1079 1071 display: flex; 1080 1072 } … … 1088 1080 #available-menu-items .new-content-item .create-item-input, 1089 1081 .customize-control-dropdown-pages .new-content-item .create-item-input { 1090 -webkit-box-flex: 10;1091 1082 flex-grow: 10; 1092 1083 } … … 1095 1086 .customize-control-dropdown-pages .new-content-item .add-content { 1096 1087 margin: 2px 0 2px 6px; 1097 -webkit-box-flex: 10;1098 1088 flex-grow: 1; 1099 1089 } … … 1216 1206 } 1217 1207 1218 @-webkit-keyframes customize-fade-in {1219 0% { opacity: 0; }1220 100% { opacity: 1; }1221 }1222 1223 1208 @keyframes customize-fade-in { 1224 1209 0% { opacity: 0; } … … 1233 1218 1234 1219 #customize-controls .customize-control-notifications-container.has-overlay-notifications { 1235 -webkit-animation: customize-fade-in 0.5s;1236 1220 animation: customize-fade-in 0.5s; 1237 1221 z-index: 30; … … 1507 1491 .customize-control-header .placeholder:hover .dice, 1508 1492 .customize-control-header .header-view:hover > button.random .dice { 1509 -webkit-animation: dice-color-change 3s infinite;1510 1493 animation: dice-color-change 3s infinite; 1511 1494 } 1512 1495 1513 1496 .button-see-me { 1514 -webkit-animation: bounce .7s 1;1515 1497 animation: bounce .7s 1; 1516 -webkit-transform-origin: center bottom;1517 1498 transform-origin: center bottom; 1518 }1519 1520 @-webkit-keyframes bounce {1521 from, 20%, 53%, 80%, to {1522 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);1523 -webkit-transform: translate3d(0,0,0);1524 }1525 1526 40%, 43% {1527 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);1528 -webkit-transform: translate3d(0, -12px, 0);1529 }1530 1531 70% {1532 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);1533 -webkit-transform: translate3d(0, -6px, 0);1534 }1535 1536 90% {1537 -webkit-transform: translate3d(0,-1px,0);1538 }1539 1499 } 1540 1500 1541 1501 @keyframes bounce { 1542 1502 from, 20%, 53%, 80%, to { 1543 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);1544 1503 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); 1545 -webkit-transform: translate3d(0,0,0);1546 1504 transform: translate3d(0,0,0); 1547 1505 } 1548 1506 1549 1507 40%, 43% { 1550 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);1551 1508 animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); 1552 -webkit-transform: translate3d(0, -12px, 0);1553 1509 transform: translate3d(0, -12px, 0); 1554 1510 } 1555 1511 1556 1512 70% { 1557 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);1558 1513 animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); 1559 -webkit-transform: translate3d(0, -6px, 0);1560 1514 transform: translate3d(0, -6px, 0); 1561 1515 } 1562 1516 1563 1517 90% { 1564 -webkit-transform: translate3d(0,-1px,0);1565 1518 transform: translate3d(0,-1px,0); 1566 1519 } … … 1832 1785 border-color: #999; 1833 1786 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 1834 -webkit-transform: translateY(1px);1835 1787 transform: translateY(1px); 1836 1788 } … … 1861 1813 1862 1814 /* Adds a delay before fading in to avoid it "jumping" */ 1863 @-webkit-keyframes themes-fade-in {1864 0% {1865 opacity: 0;1866 }1867 50% {1868 opacity: 0;1869 }1870 100% {1871 opacity: 1;1872 }1873 }1874 1815 @keyframes themes-fade-in { 1875 1816 0% { … … 1885 1826 1886 1827 .control-panel-themes .customize-themes-full-container.animate { 1887 -webkit-animation: .6s themes-fade-in 1;1888 1828 animation: .6s themes-fade-in 1; 1889 1829 } 1890 1830 1891 1831 .in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count { 1892 -webkit-animation: .6s themes-fade-in 1;1893 1832 animation: .6s themes-fade-in 1; 1894 1833 } … … 2576 2515 .adding-menu-items .add-new-menu-item:before, 2577 2516 #accordion-section-add_menu .add-new-menu-item.open:before { 2578 -webkit-transform: rotate(45deg);2579 2517 transform: rotate(45deg); 2580 2518 } -
branches/5.0/src/wp-admin/css/edit.css
r43204 r43784 1353 1353 .focus-on #adminmenuwrap { 1354 1354 transition-duration: 0.6s; 1355 transition-property: -webkit-transform;1356 1355 transition-property: transform; 1357 transition-property: transform, -webkit-transform;1358 1356 transition-timing-function: ease-in-out; 1359 1357 } … … 1361 1359 .focus-on #adminmenuback, 1362 1360 .focus-on #adminmenuwrap { 1363 -webkit-transform: translateX( -100% );1364 1361 transform: translateX( -100% ); 1365 1362 } … … 1367 1364 .focus-off #adminmenuback, 1368 1365 .focus-off #adminmenuwrap { 1369 -webkit-transform: translateX( 0 );1370 1366 transform: translateX( 0 ); 1371 1367 transition-duration: 0.2s; 1372 transition-property: -webkit-transform;1373 1368 transition-property: transform; 1374 transition-property: transform, -webkit-transform;1375 1369 transition-timing-function: ease-in-out; 1376 1370 } -
branches/5.0/src/wp-admin/css/forms.css
r43283 r43784 835 835 bottom: 9px; 836 836 background: transparent; 837 -webkit-transform: skew(20deg) rotate(6deg);838 837 transform: skew(20deg) rotate(6deg); 839 838 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); … … 841 840 842 841 .pressthis-bookmarklet:hover:after { 843 -webkit-transform: skew(20deg) rotate(9deg);844 842 transform: skew(20deg) rotate(9deg); 845 843 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); … … 1205 1203 color: #f56e28; 1206 1204 content: "\f463"; 1207 -webkit-animation: rotation 2s infinite linear;1208 1205 animation: rotation 2s infinite linear; 1209 1206 } … … 1570 1567 } 1571 1568 1572 @-webkit-keyframes rotation {1573 0% {1574 -webkit-transform: rotate(0deg);1575 transform: rotate(0deg);1576 }1577 100% {1578 -webkit-transform: rotate(359deg);1579 transform: rotate(359deg);1580 }1581 }1582 1583 1569 @keyframes rotation { 1584 1570 0% { 1585 -webkit-transform: rotate(0deg);1586 1571 transform: rotate(0deg); 1587 1572 } 1588 1573 100% { 1589 -webkit-transform: rotate(359deg);1590 1574 transform: rotate(359deg); 1591 1575 } -
branches/5.0/src/wp-admin/css/list-tables.css
r41755 r43784 1365 1365 .plugin-card .updating-message:before { 1366 1366 content: "\f463"; 1367 -webkit-animation: rotation 2s infinite linear;1368 1367 animation: rotation 2s infinite linear; 1369 }1370 1371 @-webkit-keyframes rotation {1372 0% {1373 -webkit-transform: rotate(0deg);1374 transform: rotate(0deg);1375 }1376 100% {1377 -webkit-transform: rotate(359deg);1378 transform: rotate(359deg);1379 }1380 1368 } 1381 1369 1382 1370 @keyframes rotation { 1383 1371 0% { 1384 -webkit-transform: rotate(0deg);1385 1372 transform: rotate(0deg); 1386 1373 } 1387 1374 100% { 1388 -webkit-transform: rotate(359deg);1389 1375 transform: rotate(359deg); 1390 1376 } -
branches/5.0/src/wp-admin/css/media.css
r43745 r43784 893 893 background: transparent url(../images/spinner.gif) no-repeat center; 894 894 background-size: 20px 20px; 895 -webkit-transform: translateZ(0);896 895 transform: translateZ(0); 897 896 } -
branches/5.0/src/wp-admin/css/revisions.css
r41062 r43784 356 356 width: 25px; 357 357 height: 25px; 358 -webkit-transform: rotate(45deg);359 358 transform: rotate(45deg); 360 359 } … … 418 417 width: 25px; 419 418 height: 25px; 420 -webkit-transform: rotate(45deg);421 419 transform: rotate(45deg); 422 420 } … … 474 472 border-color: #999; 475 473 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 476 -webkit-transform: translateY(1px);477 474 transform: translateY(1px); 478 475 } -
branches/5.0/src/wp-admin/css/themes.css
r41949 r43784 231 231 position: absolute; 232 232 top: 50%; 233 -webkit-transform: translateY(-50%);234 233 transform: translateY(-50%); 235 234 right: 0; … … 1240 1239 1241 1240 .background-position-control .button-group:first-child > label:first-child .dashicons { 1242 -webkit-transform: rotate( 45deg );1243 1241 transform: rotate( 45deg ); 1244 1242 } … … 1249 1247 1250 1248 .background-position-control .button-group:first-child > label:last-child .dashicons { 1251 -webkit-transform: rotate( -45deg );1252 1249 transform: rotate( -45deg ); 1253 1250 } … … 1258 1255 1259 1256 .background-position-control .button-group:last-child > label:first-child .dashicons { 1260 -webkit-transform: rotate( -45deg );1261 1257 transform: rotate( -45deg ); 1262 1258 } … … 1267 1263 1268 1264 .background-position-control .button-group:last-child > label:last-child .dashicons { 1269 -webkit-transform: rotate( 45deg );1270 1265 transform: rotate( 45deg ); 1271 1266 } … … 1564 1559 .wp-full-overlay.collapsed .collapse-sidebar-arrow:before, 1565 1560 .rtl .wp-full-overlay .collapse-sidebar-arrow:before { 1566 -webkit-transform: rotate(180.001deg);1567 1561 transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing */ 1568 1562 } 1569 1563 1570 1564 .rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { 1571 -webkit-transform: none;1572 1565 transform: none; 1573 1566 } … … 1855 1848 z-index: -1; 1856 1849 margin: -10px 0 0 -10px; 1857 -webkit-transform: translateZ(0);1858 1850 transform: translateZ(0); 1859 1851 background: transparent url(../images/spinner.gif) no-repeat center center; -
branches/5.0/src/wp-admin/css/widgets.css
r42573 r43784 165 165 166 166 .media-widget-gallery-preview { 167 display: -webkit-box;168 167 display: flex; 169 -webkit-box-pack: start;170 168 justify-content: flex-start; 171 169 flex-wrap: wrap; … … 222 220 width: 100%; 223 221 box-sizing: border-box; 224 display: -webkit-box;225 222 display: flex; 226 -webkit-box-align: center;227 223 align-items: center; 228 -webkit-box-pack: center;229 224 justify-content: center; 230 225 background-color: rgba( 0, 0, 0, .5 ); -
branches/5.0/src/wp-includes/css/buttons.css
r41062 r43784 157 157 border-color: #999; 158 158 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 159 -webkit-transform: translateY(1px);160 159 transform: translateY(1px); 161 160 } … … 181 180 text-shadow: 0 1px 0 #fff !important; 182 181 cursor: default; 183 -webkit-transform: none !important;184 182 transform: none !important; 185 183 } -
branches/5.0/src/wp-includes/css/customize-preview.css
r41062 r43784 53 53 box-sizing: border-box; 54 54 padding: 3px; 55 -webkit-animation-fill-mode: both;56 55 animation-fill-mode: both; 57 -webkit-animation-duration: .4s;58 56 animation-duration: .4s; 59 57 opacity: 0; … … 86 84 87 85 body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button { 88 -webkit-animation-name: customize-partial-edit-shortcut-bounce-appear;89 86 animation-name: customize-partial-edit-shortcut-bounce-appear; 90 87 pointer-events: auto; 91 88 } 92 89 body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button { 93 -webkit-animation-name: customize-partial-edit-shortcut-bounce-disappear;94 90 animation-name: customize-partial-edit-shortcut-bounce-disappear; 95 91 pointer-events: none; … … 101 97 } 102 98 103 @ -webkit-keyframes customize-partial-edit-shortcut-bounce-appear {99 @keyframes customize-partial-edit-shortcut-bounce-appear { 104 100 from, 20%, 40%, 60%, 80%, to { 105 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);106 101 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); 107 102 } 108 103 0% { 109 104 opacity: 0; 110 -webkit-transform: scale3d(.3, .3, .3);111 105 transform: scale3d(.3, .3, .3); 112 106 } 113 107 20% { 114 -webkit-transform: scale3d(1.1, 1.1, 1.1);115 108 transform: scale3d(1.1, 1.1, 1.1); 116 109 } 117 110 40% { 118 -webkit-transform: scale3d(.9, .9, .9);119 111 transform: scale3d(.9, .9, .9); 120 112 } 121 113 60% { 122 114 opacity: 1; 123 -webkit-transform: scale3d(1.03, 1.03, 1.03);124 115 transform: scale3d(1.03, 1.03, 1.03); 125 116 } 126 117 80% { 127 -webkit-transform: scale3d(.97, .97, .97);128 118 transform: scale3d(.97, .97, .97); 129 119 } 130 120 to { 131 121 opacity: 1; 132 -webkit-transform: scale3d(1, 1, 1);133 122 transform: scale3d(1, 1, 1); 134 }135 }136 137 @keyframes customize-partial-edit-shortcut-bounce-appear {138 from, 20%, 40%, 60%, 80%, to {139 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);140 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);141 }142 0% {143 opacity: 0;144 -webkit-transform: scale3d(.3, .3, .3);145 transform: scale3d(.3, .3, .3);146 }147 20% {148 -webkit-transform: scale3d(1.1, 1.1, 1.1);149 transform: scale3d(1.1, 1.1, 1.1);150 }151 40% {152 -webkit-transform: scale3d(.9, .9, .9);153 transform: scale3d(.9, .9, .9);154 }155 60% {156 opacity: 1;157 -webkit-transform: scale3d(1.03, 1.03, 1.03);158 transform: scale3d(1.03, 1.03, 1.03);159 }160 80% {161 -webkit-transform: scale3d(.97, .97, .97);162 transform: scale3d(.97, .97, .97);163 }164 to {165 opacity: 1;166 -webkit-transform: scale3d(1, 1, 1);167 transform: scale3d(1, 1, 1);168 }169 }170 171 @-webkit-keyframes customize-partial-edit-shortcut-bounce-disappear {172 from, 20%, 40%, 60%, 80%, to {173 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);174 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);175 }176 0% {177 opacity: 1;178 -webkit-transform: scale3d(1, 1, 1);179 transform: scale3d(1, 1, 1);180 }181 20% {182 -webkit-transform: scale3d(.97, .97, .97);183 transform: scale3d(.97, .97, .97);184 }185 40% {186 opacity: 1;187 -webkit-transform: scale3d(1.03, 1.03, 1.03);188 transform: scale3d(1.03, 1.03, 1.03);189 }190 60% {191 -webkit-transform: scale3d(.9, .9, .9);192 transform: scale3d(.9, .9, .9);193 }194 80% {195 -webkit-transform: scale3d(1.1, 1.1, 1.1);196 transform: scale3d(1.1, 1.1, 1.1);197 }198 to {199 opacity: 0;200 -webkit-transform: scale3d(.3, .3, .3);201 transform: scale3d(.3, .3, .3);202 123 } 203 124 } … … 205 126 @keyframes customize-partial-edit-shortcut-bounce-disappear { 206 127 from, 20%, 40%, 60%, 80%, to { 207 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);208 128 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); 209 129 } 210 130 0% { 211 131 opacity: 1; 212 -webkit-transform: scale3d(1, 1, 1);213 132 transform: scale3d(1, 1, 1); 214 133 } 215 134 20% { 216 -webkit-transform: scale3d(.97, .97, .97);217 135 transform: scale3d(.97, .97, .97); 218 136 } 219 137 40% { 220 138 opacity: 1; 221 -webkit-transform: scale3d(1.03, 1.03, 1.03);222 139 transform: scale3d(1.03, 1.03, 1.03); 223 140 } 224 141 60% { 225 -webkit-transform: scale3d(.9, .9, .9);226 142 transform: scale3d(.9, .9, .9); 227 143 } 228 144 80% { 229 -webkit-transform: scale3d(1.1, 1.1, 1.1);230 145 transform: scale3d(1.1, 1.1, 1.1); 231 146 } 232 147 to { 233 148 opacity: 0; 234 -webkit-transform: scale3d(.3, .3, .3);235 149 transform: scale3d(.3, .3, .3); 236 150 } -
branches/5.0/src/wp-includes/css/editor.css
r43068 r43784 694 694 border-color: #999; 695 695 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 696 -webkit-transform: translateY(1px);697 696 transform: translateY(1px); 698 697 } … … 705 704 text-shadow: 0 1px 0 #fff !important; 706 705 cursor: default; 707 -webkit-transform: none !important;708 706 transform: none !important; 709 707 } -
branches/5.0/src/wp-includes/css/jquery-ui-dialog.css
r41062 r43784 229 229 border-color: #999; 230 230 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 231 -webkit-transform: translateY(1px);232 231 transform: translateY(1px); 233 232 } … … 241 240 text-shadow: 0 1px 0 #fff !important; 242 241 cursor: default; 243 -webkit-transform: none !important;244 242 transform: none !important; 245 243 } -
branches/5.0/src/wp-includes/css/media-views.css
r41711 r43784 912 912 left: 0; 913 913 width: 100%; 914 height: 100%; 915 -webkit-transform: translate( 50%, 50% ); /* Fails with spaces?? Weird! */ 914 height: 100%; /* Fails with spaces?? Weird! */ 916 915 transform: translate( 50%, 50% ); 917 916 } 918 917 919 918 .wp-core-ui .attachment .thumbnail .centered img { 920 -webkit-transform: translate( -50%, -50% );921 919 transform: translate( -50%, -50% ); 922 920 } 923 921 924 922 .wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon { 925 -webkit-transform: translate( -50%, -70% );926 923 transform: translate( -50%, -70% ); 927 924 } … … 1293 1290 left: 0; 1294 1291 right: 0; 1295 -webkit-transform: translateY( -50% );1296 1292 transform: translateY( -50% ); 1297 1293 font-size: 40px; … … 2130 2126 left: 0; 2131 2127 right: 0; 2132 -webkit-transform: translateY( -50% );2133 2128 transform: translateY( -50% ); 2134 2129 font-size: 3em; -
branches/5.0/src/wp-includes/css/wp-auth-check.css
r41062 r43784 65 65 background: url(../images/spinner.gif) no-repeat center; 66 66 background-size: 20px 20px; 67 -webkit-transform: translateZ(0);68 67 transform: translateZ(0); 69 68 } -
branches/5.0/src/wp-includes/css/wp-embed-template.css
r41648 r43784 131 131 top: 50%; 132 132 left: 0; 133 -webkit-transform: translateY(-50%);134 133 transform: translateY(-50%); 135 134 height: 25px; … … 241 240 .wp-embed-share-dialog-content { 242 241 height: 100%; 243 -webkit-transform-style: preserve-3d;244 242 transform-style: preserve-3d; 245 243 overflow: hidden;
Note: See TracChangeset
for help on using the changeset viewer.