Skip to content

Commit

Permalink
Merge pull request #386 from DRSDavidSoft/patch-1
Browse files Browse the repository at this point in the history
Use css variable for `.error` or fallback to red
  • Loading branch information
jcubic authored Apr 18, 2018
2 parents 5fe22be + c182d67 commit 8aba622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions css/jquery.terminal-src.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ terminal .terminal-output > div {
}
.terminal .terminal-output div.error, .terminal .terminal-output div.error div {
color: red;
color: var(--error-color, red);
}
.tilda {
position: fixed;
Expand Down
1 change: 1 addition & 0 deletions css/jquery.terminal.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ terminal .terminal-output > div {
}
.terminal .terminal-output div.error, .terminal .terminal-output div.error div {
color: red;
color: var(--error-color, red);
}
.tilda {
position: fixed;
Expand Down

0 comments on commit 8aba622

Please sign in to comment.