Make WordPress Core


Ignore:
Timestamp:
11/03/2015 05:58:15 PM (11 years ago)
Author:
afercia
Message:

Accessibility: Improve buttons focus and links style in the install screens.

Fixes #34530.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r35460 r35494  
    25582558                a {
    25592559                        color: #0073aa;
    2560                         text-decoration: none;
    2561                 }
    2562                 a:hover {
     2560                }
     2561                a:hover,
     2562                a:active {
    25632563                        color: #00a0d2;
    25642564                }
     
    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                }
Note: See TracChangeset for help on using the changeset viewer.