fix: change all opacity animation timings to 0.2s (#1753)
This commit is contained in:
parent
4ad7de8e8d
commit
0c300f8e70
|
@ -15,7 +15,7 @@
|
|||
z-index: 100;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
transition: opacity 333ms linear;
|
||||
transition: opacity 0.2s linear;
|
||||
}
|
||||
.loading-mask-container.loading-mask-container-shown {
|
||||
pointer-events: auto;
|
||||
|
@ -43,4 +43,4 @@
|
|||
LoadingSpinner
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
left: 0;
|
||||
right: 0;
|
||||
opacity: 0;
|
||||
transition: opacity 333ms linear;
|
||||
transition: opacity 0.2s linear;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
}
|
||||
.virtual-list-header.shown {
|
||||
display: block;
|
||||
transition: opacity 0.333s linear;
|
||||
transition: opacity 0.2s linear;
|
||||
}
|
||||
.virtual-list-header.faded-in {
|
||||
opacity: 1;
|
||||
|
@ -58,4 +58,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
top: 0;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.333s linear;
|
||||
transition: opacity 0.2s linear;
|
||||
contain: content; /* see https://www.w3.org/TR/2018/CR-css-contain-1-20181108/#valdef-contain-content */
|
||||
}
|
||||
.virtual-list-item.shown {
|
||||
|
|
Loading…
Reference in New Issue