mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
UX: makes reports fade in when loading is done (#6440)
This commit is contained in:
parent
e0d7cdac12
commit
f34d9202b4
|
@ -13,4 +13,27 @@
|
|||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(.is-loading) {
|
||||
animation: fadein 0.5s;
|
||||
-webkit-animation: fadein 0.5s;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user