Fix column width in chord panel tables
This commit is contained in:
parent
e0bacce10a
commit
2b7c882bc9
|
|
@ -631,6 +631,7 @@
|
||||||
th.style.fontWeight = "normal";
|
th.style.fontWeight = "normal";
|
||||||
th.style.color = "#666";
|
th.style.color = "#666";
|
||||||
th.style.whiteSpace = "nowrap";
|
th.style.whiteSpace = "nowrap";
|
||||||
|
th.style.width = "28px";
|
||||||
headerRow.appendChild(th);
|
headerRow.appendChild(th);
|
||||||
});
|
});
|
||||||
table.appendChild(headerRow);
|
table.appendChild(headerRow);
|
||||||
|
|
@ -647,6 +648,7 @@
|
||||||
td.style.textAlign = "right";
|
td.style.textAlign = "right";
|
||||||
td.style.color = "#888";
|
td.style.color = "#888";
|
||||||
td.style.whiteSpace = "nowrap";
|
td.style.whiteSpace = "nowrap";
|
||||||
|
td.style.width = "28px";
|
||||||
if (j === 0) {
|
if (j === 0) {
|
||||||
td.style.textAlign = "left";
|
td.style.textAlign = "left";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue