Spinner: Hide "Loading..." if inactive

For un-upgraded spinners, the behavior without `is-active` is
inconsistent with the upgraded behavior. With this patch it's
an empty element in both cases.
master
Pascal Hartig 2015-05-09 12:21:43 +01:00
parent 787aa92228
commit 78f08dc1dd
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
width: $spinner-size;
height: $spinner-size;
&:not(.is-upgraded):after {
&:not(.is-upgraded).is-active:after {
content: "Loading...";
}