Skip to content

Commit

Permalink
small fix to glow animation #451
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jan 1, 2019
1 parent c52887a commit c9717c1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions css/jquery.terminal-src.css
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ terminal .terminal-output > div {
/* GLOW ANIMATION */
@-webkit-keyframes terminal-glow {
0%, 50% {
left: 0;
background-color: #aaa;
background-color: var(--original-color, #aaa);
color: #000;
Expand All @@ -318,6 +319,7 @@ terminal .terminal-output > div {
border-bottom: 2px solid var(--color, #aaa);
}
50.1%, 100% {
left: 0;
background-color: inherit;
color: inherit;
-webkit-box-shadow: none;
Expand All @@ -329,6 +331,7 @@ terminal .terminal-output > div {
}
@-moz-keyframes terminal-glow {
0%, 50% {
left: 0;
background-color: #aaa;
background-color: var(--original-color, #aaa);
color: #000;
Expand All @@ -343,6 +346,7 @@ terminal .terminal-output > div {
border-bottom: 2px solid var(--color, #aaa);
}
50.1%, 100% {
left: 0;
background-color: inherit;
color: inherit;
-moz-box-shadow: none;
Expand All @@ -354,6 +358,7 @@ terminal .terminal-output > div {
}
@keyframes terminal-glow {
0%, 50% {
left: 0;
background-color: #aaa;
background-color: var(--original-color, #aaa);
color: #000;
Expand All @@ -367,6 +372,7 @@ terminal .terminal-output > div {
border-bottom: 2px solid var(--color, #aaa);
}
50.1%, 100% {
left: 0;
background-color: inherit;
color: inherit;
box-shadow: none;
Expand Down

0 comments on commit c9717c1

Please sign in to comment.