smoother fade out for async contents

This commit is contained in:
Felix Hamann 2019-03-03 14:55:54 +01:00
parent 8317748442
commit 5765d3eba0
3 changed files with 3 additions and 3 deletions

View File

@ -4,6 +4,6 @@
.async-form-loading {
opacity: 0.1;
transition: opacity 800ms ease-in-out;
transition: opacity 800ms ease-out;
pointer-events: none;
}

View File

@ -1,5 +1,5 @@
.async-table--loading {
opacity: 0.7;
pointer-events: none;
transition: opacity 400ms ease-in-out;
transition: opacity 400ms ease-out;
}

View File

@ -1,5 +1,5 @@
.async-table-filter--loading {
opacity: 0.7;
pointer-events: none;
transition: opacity 400ms ease-in-out;
transition: opacity 400ms ease-out;
}