Make WordPress Core

Changeset 45145


Ignore:
Timestamp:
04/08/2019 11:28:27 PM (6 years ago)
Author:
pento
Message:

Site Health: Remove animated ellipsis from the status loading indicator.

This animation wasn't particularly reliable across browsers.

Props Clorith, afercia.
Fixes #46684.

File:
1 edited

Legend:

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

    r45128 r45145  
    6868
    6969.site-health-progress.loading .site-health-progress-count::after {
    70     animation: loadingEllipsis 3s infinite ease-in-out;
     70    content: "···";
    7171}
    7272
     
    106106    100% {
    107107        stroke: #adc5d2;
    108     }
    109 }
    110 
    111 @keyframes loadingEllipsis {
    112     0% {
    113         content: ".";
    114     }
    115     50% {
    116         content: "..";
    117     }
    118     100% {
    119         content: "...";
    120108    }
    121109}
Note: See TracChangeset for help on using the changeset viewer.