Skip to content
Snippets Groups Projects
Verified Commit 250f68c3 authored by Dorian Koch's avatar Dorian Koch
Browse files

Fix UpdateOverlay briefly showing on page load

parent db2eaed0
No related branches found
No related tags found
No related merge requests found
Pipeline #7140 passed
...@@ -286,32 +286,14 @@ $link-decoration: none; ...@@ -286,32 +286,14 @@ $link-decoration: none;
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.5);
z-index: 1000; z-index: 1000;
pointer-events: none; pointer-events: none;
animation: fadeOut 0.3s ease-in-out forwards;
}
.edits-disabled-overlay.visible {
animation: fadeIn 0s ease-in-out forwards;
pointer-events: none;
}
@keyframes fadeIn {
from {
opacity: 0; opacity: 0;
transition: opacity 0.3s ease-in-out;
} }
to { .edits-disabled-overlay.visible {
opacity: 1;
}
}
@keyframes fadeOut {
from {
opacity: 1; opacity: 1;
} pointer-events: none;
transition: opacity 0.1s ease-in-out;
to {
opacity: 0;
}
} }
.make-span-overflow-scroll span { .make-span-overflow-scroll span {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment