Ticket #17204: 17204.diff
File 17204.diff, 1.7 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/update-core.php
242 242 'wp-admin/images/visit-site-button-grad-vs.gif', 243 243 'wp-admin/images/visit-site-button-grad.gif', 244 244 'wp-includes/classes.php', 245 // 3.2 246 'wp-admin/images/button-grad.png', 247 'wp-admin/images/button-grad-active.png', 245 248 ); 246 249 247 250 /** -
wp-admin/css/colors-fresh.dev.css
318 318 input.button-primary, 319 319 button.button-primary, 320 320 a.button-primary { 321 background: #21759B; 322 background: -webkit-gradient(linear, left top, left bottom, from(#298cba), to(#1d6385)); 323 background: -moz-linear-gradient(top, #298cba, #1d6385); 324 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#298cba', endColorstr='#1d6385'); 321 325 border-color: #298cba; 322 326 font-weight: bold; 323 327 color: #fff; 324 background: #21759B url(../images/button-grad.png) repeat-x scroll left top;325 328 text-shadow: rgba(0,0,0,0.3) 0 -1px 0; 326 329 } 327 330 328 331 input.button-primary:active, 329 332 button.button-primary:active, 330 333 a.button-primary:active { 331 background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top; 334 background: #21759B; 335 background: -webkit-gradient(linear, left top, left bottom, from(#1d6385), to(#298cba)); 336 background: -moz-linear-gradient(top, #1d6385, #298cba); 337 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1d6385', endColorstr='#298cba'); 332 338 color: #eaf2fa; 333 339 } 334 340