don't animate visibility, opacity is enough (#250866)

https://github.com/microsoft/vscode/issues/250746
This commit is contained in:
Johannes Rieken
2025-06-06 17:47:24 +02:00
committed by GitHub
parent f0073510e2
commit a76a1c4650
@@ -54,14 +54,8 @@
}
@keyframes fadein {
0% {
opacity: 0;
visibility: visible;
}
100% {
opacity: 1;
}
0% { opacity: 0;}
100% { opacity: 1;}
}
.monaco-editor .codelens-decoration.fadein {