Make WordPress Core

Changeset 32682


Ignore:
Timestamp:
06/02/2015 05:50:33 AM (10 years ago)
Author:
obenland
Message:

Use WordPress' default focus styles for links on login screens.

Props afercia.
Fixes #31712.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/login.css

    r32051 r32682  
    4343a:focus {
    4444    color: #124964;
    45 }
    46 
    47 a:focus,
    48 a:active {
    49     outline: thin dotted;
     45    -webkit-box-shadow:
     46        0 0 0 1px #5b9dd9,
     47        0 0 2px 1px rgba(30, 140, 190, .8);
     48    box-shadow:
     49        0 0 0 1px #5b9dd9,
     50        0 0 2px 1px rgba(30, 140, 190, .8);
     51}
     52
     53.ie8 a:focus {
     54    outline: #5b9dd9 solid 1px;
    5055}
    5156
     
    184189}
    185190
     191.login #nav a:focus,
     192.login #backtoblog a:focus,
     193.login h1 a:focus {
     194    color: #124964;
     195}
     196
    186197.login form .input,
    187198.login input[type="text"] {
Note: See TracChangeset for help on using the changeset viewer.