Make WordPress Core

Ticket #34530: 34530.patch

File 34530.patch, 1.5 KB (added by afercia, 11 years ago)
  • src/wp-admin/css/install.css

     
    1717
    1818a {
    1919        color: #0073aa;
    20         text-decoration: none;
    2120}
    2221
    23 a:hover {
     22a:hover,
     23a:active {
    2424        color: #00a0d2;
    2525}
    2626
     27a:focus {
     28        color: #124964;
     29        -webkit-box-shadow:
     30                0 0 0 1px #5b9dd9,
     31                0 0 2px 1px rgba(30, 140, 190, .8);
     32        box-shadow:
     33                0 0 0 1px #5b9dd9,
     34                0 0 2px 1px rgba(30, 140, 190, .8);
     35}
     36
     37.ie8 a:focus {
     38        outline: #5b9dd9 solid 1px;
     39}
     40
    2741h1 {
    2842        border-bottom: 1px solid #dedede;
    2943        clear: both;
     
    97111        overflow: hidden;
    98112        display: block;
    99113}
     114
     115#logo a:focus {
     116        -webkit-box-shadow: none;
     117        box-shadow: none;
     118}
     119
    100120.step {
    101121        margin: 20px 0 15px;
    102122}
  • src/wp-includes/functions.php

     
    25572557                }
    25582558                a {
    25592559                        color: #0073aa;
    2560                         text-decoration: none;
    25612560                }
    2562                 a:hover {
     2561                a:hover,
     2562                a:active {
    25632563                        color: #00a0d2;
    25642564                }
    25652565                a:focus {
     
    26112611                }
    26122612
    26132613                .button:focus  {
    2614                         -webkit-box-shadow:
    2615                                 0 0 0 1px #5b9dd9,
    2616                                 0 0 2px 1px rgba(0, 115, 170, .8);
    2617                         box-shadow:
    2618                                 0 0 0 1px #5b9dd9,
    2619                                 0 0 2px 1px rgba(0, 115, 170, .8);
     2614                        border-color: #5b9dd9;
     2615                        -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
     2616                        box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    26202617                        outline: none;
    26212618                }
    26222619