Align the nick as well; fix padding when aligned
This commit is contained in:
parent
73da41641b
commit
b93b799a11
@ -59,6 +59,8 @@ html, body {
|
||||
.job-url {
|
||||
/* Needed for 'Align!' feature */
|
||||
display: inline-block;
|
||||
/* Needed to avoid extra vertical padding */
|
||||
vertical-align: bottom;
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
@ -75,6 +77,20 @@ html, body {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.job-nick {
|
||||
/* Needed for 'Align!' feature */
|
||||
display: inline-block;
|
||||
vertical-align: bottom;
|
||||
/* Needed to avoid collapsing of leading space */
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.job-nick-aligned {
|
||||
width: 60px;
|
||||
overflow: hidden;
|
||||
text-overflow: hidden;
|
||||
}
|
||||
|
||||
.job-ident {
|
||||
margin: 0 1px 0 0;
|
||||
border: 0;
|
||||
@ -586,7 +602,7 @@ JobsRenderer.prototype._createLogContainer = function(jobData) {
|
||||
h("a", {"className": "job-url", "href": jobData["url"]}, jobData["url"]),
|
||||
" on ",
|
||||
h("span", {"title": startedISOString}, startedISOString.split("T")[0].substr(5)),
|
||||
(this.showNicks ? " by " + jobData["started_by"] : ""),
|
||||
h("span", {"className": "job-nick"}, (this.showNicks ? " by " + jobData["started_by"] : "")),
|
||||
jobNote,
|
||||
"; ",
|
||||
statsElements.mb,
|
||||
@ -927,6 +943,7 @@ Dashboard.prototype.toggleAlign = function() {
|
||||
var adderOrRemover = this.aligned ? classAdder : classRemover;
|
||||
arrayFrom(document.querySelectorAll('.job-url')).map(adderOrRemover('job-url-aligned'));
|
||||
arrayFrom(document.querySelectorAll('.job-note')).map(adderOrRemover('job-note-aligned'));
|
||||
arrayFrom(document.querySelectorAll('.job-nick')).map(adderOrRemover('job-nick-aligned'));
|
||||
};
|
||||
|
||||
Dashboard.prototype.toggleHelp = function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user