jenkins-plugins
Jenkins – HTML Publisher Plugin – No CSS is displayed when report is viewed in Jenkins Server
Figured out the issue. Sharing it here for other users. CSS is stripped out because of the Content Security Policy in Jenkins. (https://wiki.jenkins-ci.org/display/JENKINS/Configuring+Content+Security+Policy) The default rule is set to: sandbox; default-src ‘none’; img-src ‘self’; style-src ‘self’; This rule set results in the following: No JavaScript allowed at all No plugins (object/embed) allowed No inline CSS, … Read more