feat(styles): enhance actions column with sticky positioning and responsive layout adjustments
This commit is contained in:
@@ -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`
|
||||
|
Reference in New Issue
Block a user