-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the in-progress icon float layer out #183
Comments
Second that, same here. |
@starwarsfan I thought it was a feature 🤣 |
Metoo, maybe problem is jenkins |
Jenkins default theme works well with the "in progress" status icon. So that quite unlikely is the issue of Jenkins. |
I agree. Used to be fine but when I recently updated jenkins there was a problem with icon |
Nice job @marslo! Would be cool to see a PR for this |
this is actually the workaround, just hidden the overlayer svg image... |
Still happening with Jenkins 2.293 and jenkins-material-theme.css v.1.3.3, any news on that matter? Thanks |
Related Jenkins Issue: JENKINS-65808 |
The issue has hit other themes too: TobiX/jenkins-neo2-theme#40 |
See afonsof/jenkins-material-theme#188 The fix was suggested at afonsof/jenkins-material-theme#183 (comment)
Hello, thank you for the workaround. If anyone want to set up it using groovy script, here is the script I use import jenkins.model.Jenkins
import org.jenkinsci.plugins.simpletheme.CssUrlThemeElement
import org.jenkinsci.plugins.simpletheme.CssTextThemeElement
Jenkins jenkins = Jenkins.get()
def themeDecorator = jenkins.getExtensionList(org.codefirst.SimpleThemeDecorator.class).first()
themeDecorator.setElements([
new CssUrlThemeElement('https://cdn.rawgit.com/afonsof/jenkins-material-theme/gh-pages/dist/material-indigo.css'),
// fix jenkins theme issue https://github.com/afonsof/jenkins-material-theme/issues/183#issuecomment-806518351
new CssTextThemeElement('svg[class*=anime] { visibility: collapse }')
])
jenkins.save() |
ths |
Jenkins version: 2.284/2.283
simple theme plugin version: 0.6
material theme: 0.3.2
The running icon shows up:
after using Jenkins default theme:
The text was updated successfully, but these errors were encountered: