Make WordPress Core

Ticket #27245: 27245.2.patch

File 27245.2.patch, 708 bytes (added by johnbillion, 11 years ago)
  • wp-admin/css/login.css

     
    2020        line-height: 1.4em;
    2121}
    2222
     23a {
     24        color: #0074a2;
     25        -webkit-transition-property: border, background, color;
     26        transition-property: border, background, color;
     27        -webkit-transition-duration: .05s;
     28        transition-duration: .05s;
     29        -webkit-transition-timing-function: ease-in-out;
     30        transition-timing-function: ease-in-out;
     31}
     32
     33a {
     34        outline: 0;
     35}
     36
     37a:hover,
     38a:active {
     39        color: #2ea2cc;
     40}
     41
     42a:focus {
     43        color: #124964;
     44}
     45
     46a:focus,
     47a:active {
     48        outline: thin dotted;
     49}
     50
    2351p {
    2452        line-height: 1.5;
    2553}