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