add edit button to mapping table and refactor cell creation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-12 13:22:51 +11:00
parent ce5b12d8b8
commit 32c3d779c0
5 changed files with 107 additions and 86 deletions

View File

@@ -418,6 +418,15 @@ nav p {
margin: 0 auto;
}
#content_table .mapping-edit-button {
min-height: 32px;
min-width: 64px;
margin: 0;
padding: 5px 10px;
font-size: 11px;
line-height: 1;
}
#content_table tr.activeEPG {
border-left-color: #2ed486;
}
@@ -830,13 +839,15 @@ nav p {
}
#content_table td[data-cell-type="checkbox"],
#content_table td[data-cell-type="image"] {
#content_table td[data-cell-type="image"],
#content_table td[data-cell-type="action"] {
grid-template-columns: 1fr;
justify-items: start;
}
#content_table td[data-cell-type="checkbox"]::before,
#content_table td[data-cell-type="image"]::before {
#content_table td[data-cell-type="image"]::before,
#content_table td[data-cell-type="action"]::before {
margin-bottom: 4px;
}
@@ -856,6 +867,11 @@ nav p {
height: 24px;
}
#content_table .mapping-edit-button {
min-height: 38px;
width: 100%;
}
.mobile-only-control {
display: block;
width: 100%;