We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b86b87b commit cf648b9Copy full SHA for cf648b9
devtools/client/debugger/src/components/Editor/Editor.css
@@ -159,13 +159,15 @@ html[dir="rtl"] .editor-mount {
159
animation-name: fade-highlight-out;
160
animation-duration: var(--highlight-line-duration);
161
animation-timing-function: ease-out;
162
- animation-fill-mode: forwards;
+ animation-direction: forwards;
163
}
164
165
@keyframes fade-highlight-out {
166
- 0%, 30% {
167
- /* We want to use a color with some transparency so text selection is visible through it */
168
- background-color: var(--theme-contrast-background-alpha);
+ 0% {
+ background-color: var(--theme-contrast-background);
+ }
169
+ 30% {
170
171
172
100% {
173
background-color: transparent;
0 commit comments