Make WordPress Core

Ticket #16461: 16461_login.patch

File 16461_login.patch, 1.1 KB (added by ocean90, 14 years ago)

Gradient update for login.css

  • wp-admin/css/login.dev.css

     
    8585        top: 0;
    8686        left: 0;
    8787        border-bottom: #c6c6c6 1px solid;
    88         background: #d9d9d9; /* fallback color */
    89         background: -moz-linear-gradient(bottom,  #d7d7d7,  #e4e4e4);
    90         background: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4));
     88        background-color: #d9d9d9; /* Fallback */
     89        background-image: -ms-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* IE10 */
     90        background-image: -moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Firefox */
     91        background-image: -o-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Opera */
     92        background-image: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); /* old Webkit  */
     93        background-image: -webkit-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* new Webkit */
     94        background-image: linear-gradient(bottom, #d7d7d7, #e4e4e4); /* proposed W3C Markup */
    9195        height: 30px;
    9296        width: 100%;
    9397}
     
    144148        padding: 6px 5px;
    145149        text-align: center;
    146150}
    147