Skip to content

Commit cf648b9

Browse files
author
Iulian Moraru
committed
Backed out changeset 5e0067938b95 (bug 1880428) for causing devtools failures on browser_parsable_css.js.
1 parent b86b87b commit cf648b9

File tree

1 file changed

+6
-4
lines changed
  • devtools/client/debugger/src/components/Editor

1 file changed

+6
-4
lines changed

devtools/client/debugger/src/components/Editor/Editor.css

+6-4
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,15 @@ html[dir="rtl"] .editor-mount {
159159
animation-name: fade-highlight-out;
160160
animation-duration: var(--highlight-line-duration);
161161
animation-timing-function: ease-out;
162-
animation-fill-mode: forwards;
162+
animation-direction: forwards;
163163
}
164164

165165
@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);
166+
0% {
167+
background-color: var(--theme-contrast-background);
168+
}
169+
30% {
170+
background-color: var(--theme-contrast-background);
169171
}
170172
100% {
171173
background-color: transparent;

0 commit comments

Comments
 (0)