Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[JENKINS-34019] When displaying timestamps, ignore AnsiColor plugin s…
…tyling
- Loading branch information
Showing
with
30 additions
and 0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,8 @@ | ||
|
||
/* Override style changes made by the AnsiColor plugin. */ | ||
.timestamp { | ||
color: #333; | ||
background-color: white; | ||
This comment has been minimized.
This comment has been minimized. |
||
font-weight: normal; | ||
display: inline-block; | ||
} |
@StevenGBrown --
white
is not a good default choice since not all console output has a white background, I suggest this be changed toinherit
, which on my Jenkins instance with the material theme looks proper.This was also commented on in the JIRA ticket: https://issues.jenkins-ci.org/browse/JENKINS-34019?focusedCommentId=271468&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-271468