feat(styles): enhance actions column with sticky positioning and responsive layout adjustments

This commit is contained in:
2025-09-16 16:12:13 +00:00
parent f739bb608e
commit 49b9e833e8
2 changed files with 24 additions and 6 deletions

View File

@@ -324,7 +324,7 @@ export class DeesTable<T> extends DeesElement {
})}
${(() => {
if (this.dataActions && this.dataActions.length > 0) {
return html` <th>Actions</th> `;
return html` <th class="actionsCol">Actions</th> `;
}
})()}
</tr>
@@ -464,7 +464,7 @@ export class DeesTable<T> extends DeesElement {
${(() => {
if (this.dataActions && this.dataActions.length > 0) {
return html`
<td>
<td class="actionsCol">
<div class="actionsContainer">
${this.getActionsForType('inRow').map(
(actionArg) => html`