TierListMaker:修订间差异
来自卡厄思梦境WIKI
无编辑摘要 |
小无编辑摘要 |
||
| 第547行: | 第547行: | ||
newRow.innerHTML = ` | newRow.innerHTML = ` | ||
<th style="width: 100px; background-color: #9e9e9e; color: white; font-size: 20px; text-align: center" class="tier-header" data-tier="${tierName}">${tierName}</th> | <th style="width: 100px; background-color: #9e9e9e; color: white; font-size: 20px; text-align: center" class="tier-header" data-tier="${tierName}">${tierName}</th> | ||
<td | <td class="tier-row" data-tier="${tierName}"></td> | ||
`; | `; | ||
| 第689行: | 第689行: | ||
newRow.innerHTML = ` | newRow.innerHTML = ` | ||
<th style="width: 100px; background-color: ${savedRow.bgColor}; color: white; font-size: 20px; text-align: center" class="tier-header" data-tier="${savedRow.name}">${savedRow.name}</th> | <th style="width: 100px; background-color: ${savedRow.bgColor}; color: white; font-size: 20px; text-align: center" class="tier-header" data-tier="${savedRow.name}">${savedRow.name}</th> | ||
<td | <td class="tier-row" data-tier="${savedRow.name}"></td> | ||
`; | `; | ||
tbody.appendChild(newRow); | tbody.appendChild(newRow); | ||