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

This animation wasn't particularly reliable across browsers.

Props Clorith, afercia.
Fixes #46684.



git-svn-id: https://develop.svn.wordpress.org/trunk@45145 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2019-04-08 23:28:27 +00:00
parent cfebdd3752
commit 8eca6fd949

View File

@ -67,7 +67,7 @@
}
.site-health-progress.loading .site-health-progress-count::after {
animation: loadingEllipsis 3s infinite ease-in-out;
content: "···";
}
.site-health-progress.loading svg #bar {
@ -108,18 +108,6 @@
}
}
@keyframes loadingEllipsis {
0% {
content: ".";
}
50% {
content: "..";
}
100% {
content: "...";
}
}
.health-check-tab {
display: inline-block;
text-decoration: none;