Make WordPress Core

Changeset 29268


Ignore:
Timestamp:
07/22/2014 07:57:21 PM (12 years ago)
Author:
ocean90
Message:

Media CSS: Fix typo in box-shadow property for WebKit and update indentation to match the other ones.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/css/media-views.css

    r29266 r29268  
    725725
    726726.selected.attachment:focus {
    727     -webkit-box-shadow: 0 0 0 1px #fff,
    728      0 0 0 5px #1e8cbe;
    729     box-shadow: 0 0 0 1px #fff,
    730      0 0 0 5px #1e8cbe;
     727    -webkit-box-shadow:
     728        0 0 0 1px #fff,
     729        0 0 0 5px #1e8cbe;
     730    box-shadow:
     731        0 0 0 1px #fff,
     732        0 0 0 5px #1e8cbe;
    731733}
    732734
     
    14901492
    14911493.attachment.selection.selected:focus {
    1492     webkit-box-shadow: 0 0 0 1px #5b9dd9,
    1493      0 0 2px 2px #5b9dd9;
    1494     box-shadow: 0 0 0 1px #5b9dd9,
    1495      0 0 2px 2px #5b9dd9;
     1494    -webkit-box-shadow:
     1495        0 0 0 1px #5b9dd9,
     1496        0 0 2px 2px #5b9dd9;
     1497    box-shadow:
     1498        0 0 0 1px #5b9dd9,
     1499        0 0 2px 2px #5b9dd9;
    14961500    outline: none;
    14971501}
Note: See TracChangeset for help on using the changeset viewer.