Changeset 43784 for branches/5.0/src/wp-includes/css
- Timestamp:
- 10/22/2018 05:03:38 AM (8 years ago)
- Location:
- branches/5.0/src/wp-includes/css
- Files:
-
- 7 edited
-
buttons.css (modified) (2 diffs)
-
customize-preview.css (modified) (4 diffs)
-
editor.css (modified) (2 diffs)
-
jquery-ui-dialog.css (modified) (2 diffs)
-
media-views.css (modified) (3 diffs)
-
wp-auth-check.css (modified) (1 diff)
-
wp-embed-template.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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.