Make WordPress Core

Changeset 20655


Ignore:
Timestamp:
04/30/2012 09:32:44 PM (13 years ago)
Author:
nacin
Message:

Fix some unused/bad CSS for Press This backgrounds and gradients. props georgestephanis, helenyhou. fixes #20573.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/wp-admin.dev.css

    r20633 r20655  
    47144714    color: #333;
    47154715    background: #dfdfdf;
    4716     background-image: -webkit-gradient(
    4717         linear,
    4718         left bottom,
    4719         left top,
    4720         color-stop(0.07, rgb(230,230,230)),
    4721         color-stop(0.77, rgb(216,216,216))
    4722     );
    4723     background-image: -moz-linear-gradient(
    4724         center bottom,
    4725         rgb(230,230,230) 7%,
    4726         rgb(216,216,216) 77%
    4727     );
    4728     background-repeat: no-repeat;
    4729     background-image-position: 10px 8px;
     4716    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.07, #e6e6e6), color-stop(0.77, #d8d8d8));
     4717    background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4718    background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4719    background-image: -ms-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4720    background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4721    background-image: linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    47304722    -webkit-border-radius: 5px;
    47314723    border-radius: 5px;
    4732     border: 1px #b4b4b4 solid;
     4724    border: 1px solid #b4b4b4;
    47334725    font-style: normal;
    47344726    line-height: 16px;
    47354727    font-size: 14px;
    47364728    text-decoration: none;
    4737     text-shadow: #fff 0 1px 0px;
     4729    text-shadow: 0 1px 0px #fff;
    47384730}
    47394731
Note: See TracChangeset for help on using the changeset viewer.