chg: Disable column separators and right align hits

This commit is contained in:
SinTan1729
2024-03-31 00:12:48 -05:00
parent 3a712f812a
commit 9a520c122e
3 changed files with 10 additions and 1 deletions

View File

@@ -97,6 +97,7 @@ const TR = (row, site) => {
}
hitsTD = TD(row.hits);
hitsTD.setAttribute("label", "Hits");
hitsTD.setAttribute("name", "hitsColumn");
const btn = deleteButton(row.short);
tr.appendChild(shortTD);

View File

@@ -20,6 +20,14 @@ table tr td div {
overflow: auto;
}
.pure-table td {
border-left: none;
}
td[name="hitsColumn"] {
text-align: right;
}
td[name="deleteBtn"] div {
display: flex;
align-items: center;