-
-
Notifications
You must be signed in to change notification settings - Fork 280
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
Better Support Multiple Jobs #569
Comments
When it comes to the UI it is always difficult to satisfy everyone and sometimes just hard to add a new feature without breaking something else. Anyway it you think it can be solved by plain CSS rules, here is how I increase the badge size to make them more visible (something that not everyone would like).
Here's my custom script: var increaseBagdesSize = function() {
var sheet = window.document.styleSheets[0];
sheet.insertRule('span.badge { font-size: 200%; }', sheet.cssRules.length);
}
if(window.attachEvent) {
window.attachEvent('onload', increaseBagdesSize);
} else {
if(window.onload) {
var curronload = window.onload;
var newonload = function(evt) {
curronload(evt);
increaseBagdesSize(evt);
};
window.onload = newonload;
} else {
window.onload = increaseBagdesSize;
}
} |
I think #360 could fix this problem. I will also check out the CSS workaround. |
I have a similar issue. |
Having multiple jobs is nearly impossible with this view plugin.
When using a low value of "Maximum number of columns", the text is impossible to read/make out.
I have to set this value to Max=8 and Text scale to max, in order to be able to read each job.
This picture shows only added the jobs for
master
branch, and scale/column set to max value.This next screenshot I have added all our other Release branches. The Scale/Columns are still at max 8/2.
It should be possible to define how much space one Job should take. If you need to scroll, so be it.
The text was updated successfully, but these errors were encountered: