Make WordPress Core

Changeset 42689


Ignore:
Timestamp:
02/11/2018 12:54:15 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Administration: Remove erroneous transition-delay values from CSS files.

Although unitless zero is allowed for <length> CSS data type, it's invalid for <time> data type.

Props chetan200891, manuel_84, GaryJ.
Fixes #43195.

Location:
trunk/src
Files:
3 edited

Legend:

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

    r42644 r42689  
    24562456    font-style: normal;
    24572457    vertical-align: top;
    2458     transition: color .1s ease-in 0;
     2458    transition: color .1s ease-in;
    24592459    text-align: center;
    24602460    color: #ffb900;
  • trunk/src/wp-admin/css/themes.css

    r42641 r42689  
    11831183    line-height: 1;
    11841184    text-align: center;
    1185     transition: background-color .1s ease-in 0;
     1185    transition: background-color .1s ease-in;
    11861186}
    11871187
  • trunk/src/wp-includes/css/dashicons.css

    r41062 r42689  
    2626    vertical-align: top;
    2727    text-align: center;
    28     transition: color .1s ease-in 0;
     28    transition: color .1s ease-in;
    2929    -webkit-font-smoothing: antialiased;
    3030    -moz-osx-font-smoothing: grayscale;
Note: See TracChangeset for help on using the changeset viewer.