Changeset 21529
- Timestamp:
- 08/15/2012 06:40:11 PM (9 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.dev.css
r21504 r21529 248 248 } 249 249 250 .wrap .add-new-h2 { 250 .wrap .add-new-h2, 251 .wrap .add-new-h2:active { 251 252 background: #f1f1f1; 253 } 254 255 .wrap .add-new-h2:focus { 256 background: #c7e7fd; 252 257 } 253 258 … … 466 471 467 472 a:hover, 468 a:active, 473 a:active { 474 color: #d54e21; 475 } 476 469 477 a:focus { 470 color: #d54e21; 478 background: #c7e7fd; 479 color: #124964; 480 } 481 482 a:active { 483 background: none; 484 outline: thin dotted; 485 } 486 487 #adminmenu a:active { 488 outline: none; 471 489 } 472 490 … … 592 610 } 593 611 594 th.sortable a:hover, th.sortable a:active, th.sortable a:focus { 612 th.sortable a:hover, 613 th.sortable a:active, 614 th.sortable a:focus { 595 615 color: #333; 616 } 617 618 th.sortable a:focus { 619 background: #e1e1e1; 620 background-image: -webkit-gradient(linear, left bottom, left top, from(#dcdcdc), to(#e9e9e9)); 621 background-image: -webkit-linear-gradient(bottom, #dcdcdc, #e9e9e9); 622 background-image: -moz-linear-gradient(bottom, #dcdcdc, #e9e9e9); 623 background-image: -o-linear-gradient(bottom, #dcdcdc, #e9e9e9); 624 background-image: linear-gradient(to top, #dcdcdc, #e9e9e9); 596 625 } 597 626 … … 1852 1881 } 1853 1882 1883 #screen-meta-links a:focus { 1884 background: #c7e7fd url(../images/arrows.png) no-repeat right 4px; 1885 color: #124964; 1886 } 1887 1888 #screen-meta-links a:active { 1889 background-color: transparent url(../images/arrows.png) no-repeat right 4px; 1890 } 1891 1854 1892 #screen-meta-links a.show-settings.screen-meta-active { 1855 1893 background: transparent url(../images/arrows-vs.png) no-repeat right -31px; -
trunk/wp-admin/css/colors-fresh.dev.css
r21504 r21529 239 239 } 240 240 241 .wrap .add-new-h2 { 241 .wrap .add-new-h2, 242 .wrap .add-new-h2:active { 242 243 background: #f1f1f1; 244 } 245 246 .wrap .add-new-h2:focus { 247 background: #c7e7fd; 243 248 } 244 249 … … 457 462 458 463 a:hover, 459 a:active, 464 a:active { 465 color: #d54e21; 466 } 467 460 468 a:focus { 461 color: #d54e21; 469 background: #c7e7fd; 470 color: #124964; 471 } 472 473 a:active { 474 background: none; 475 outline: thin dotted; 476 } 477 478 #adminmenu a:active { 479 outline: none; 462 480 } 463 481 … … 583 601 } 584 602 585 th.sortable a:hover, th.sortable a:active, th.sortable a:focus { 603 th.sortable a:hover, 604 th.sortable a:active, 605 th.sortable a:focus { 586 606 color: #333; 607 } 608 609 th.sortable a:focus { 610 background: #e1e1e1; 611 background-image: -webkit-gradient(linear, left bottom, left top, from(#dcdcdc), to(#e9e9e9)); 612 background-image: -webkit-linear-gradient(bottom, #dcdcdc, #e9e9e9); 613 background-image: -moz-linear-gradient(bottom, #dcdcdc, #e9e9e9); 614 background-image: -o-linear-gradient(bottom, #dcdcdc, #e9e9e9); 615 background-image: linear-gradient(to top, #dcdcdc, #e9e9e9); 587 616 } 588 617 … … 863 892 #screen-meta-links a.show-settings { 864 893 background: transparent url(../images/arrows.png) no-repeat right 4px; 894 } 895 896 #screen-meta-links a:focus { 897 background: #c7e7fd url(../images/arrows.png) no-repeat right 4px; 898 color: #124964; 899 } 900 901 #screen-meta-links a:active { 902 background-color: transparent url(../images/arrows.png) no-repeat right 4px; 865 903 } 866 904 -
trunk/wp-admin/css/wp-admin.dev.css
r21510 r21529 454 454 .subsubsub a.current { 455 455 font-weight: bold; 456 background: none;457 456 border: none; 458 457 } -
trunk/wp-admin/js/common.dev.js
r21457 r21529 376 376 }); 377 377 } 378 379 // Blur accessibility link background color onclick 380 $(document).on('click.wp-accessibility-blur', 'a', function() { 381 $(this).blur(); 382 }); 378 383 }); 379 384
Note: See TracChangeset
for help on using the changeset viewer.