Make WordPress Core

Changeset 34637


Ignore:
Timestamp:
09/27/2015 07:16:35 PM (9 years ago)
Author:
helen
Message:

Autoprefixer for [34634].

Normally when there are multiple comma-separated values in CSS, each one would go on its own indented line. However, Autoprefixer appears to be tripping up on gradients at the moment, so it's going to stay on one line until we investigate upstream.

see #33299.

Location:
trunk/src/wp-admin/css
Files:
2 edited

Legend:

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

    r34365 r34637  
    13151315
    13161316.notice-alt {
     1317    -webkit-box-shadow: none;
    13171318    box-shadow: none;
    13181319}
  • trunk/src/wp-admin/css/edit.css

    r34634 r34637  
    292292    height: auto;
    293293    width: auto;
     294    background-image: -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
    294295    background-image: linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
    295296    background-position: 0 0, 10px 10px;
     297    -webkit-background-size: 20px 20px;
    296298    background-size: 20px 20px;
    297299}
Note: See TracChangeset for help on using the changeset viewer.