Minor pinout table improvements (#2846)
* try to fix table width * try here
This commit is contained in:
parent
a8e6078f04
commit
4d6b2783f3
|
@ -32,7 +32,7 @@ function addRow(table, pin, pdiv) {
|
|||
var cells = row.children;
|
||||
for (var i = 0; i < cells.length; i++) {
|
||||
var cell = cells[i];
|
||||
cell.textContent = pin[cell.dataset.field];
|
||||
cell.textContent = Array.isArray(pin[cell.dataset.field]) ? pin[cell.dataset.field].join(", ") : pin[cell.dataset.field];
|
||||
}
|
||||
clone.querySelector(".pin-data").dataset.type = pin.type;
|
||||
if (pdiv) {
|
||||
|
@ -43,6 +43,7 @@ function addRow(table, pin, pdiv) {
|
|||
}
|
||||
table.appendChild(clone);
|
||||
}
|
||||
|
||||
function clickPin(table, pin, pdiv) {
|
||||
table.parentElement.style.display = "table";
|
||||
table.innerHTML = "";
|
||||
|
|
|
@ -148,7 +148,8 @@ table {
|
|||
|
||||
@media (max-width: 1000px) {
|
||||
table {
|
||||
font-size: 3rem;
|
||||
word-wrap: break-word;
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue