Let blink animation support style inheritance

With this change, blinking cursor will use the same font and background
color that set before.
This commit is contained in:
Martin Wang
2017-02-14 12:35:39 -05:00
parent fddc13d98e
commit 345553012f
+2 -5
View File
@@ -87,13 +87,10 @@
}
@keyframes xterm-cursor-blink {
0% {
background-color: #fff;
color: #000;
}
0% { }
50% {
background-color: transparent;
color: #FFF;
color: inherit;
}
}