fix(accounts): move action controls farther right

Shift the visible Action header and every account row menu together twenty pixels toward the table edge while preserving the fixed column width. Update the focused layout regression coverage to require the exact requested offset.
This commit is contained in:
Sucukdeluxe
2026-08-15 02:30:12 +02:00
parent 48430ef045
commit 2d62dd69d0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -675,7 +675,7 @@
}
.settings-account-column-actions {
transform: translateX(6px);
transform: translateX(20px);
}
.settings-account-hoster {
+1 -1
View File
@@ -724,7 +724,7 @@ describe("account workspace", () => {
expect(html).toContain('aria-label="Status Spaltenbreite ändern"');
expect(html).toMatch(/class="settings-account-column-actions" role="columnheader">Aktion<\/span>/);
expect(settingsCss).not.toMatch(/\.settings-account-column-actions\s*{[^}]*padding-right:/s);
expect(settingsCss).toMatch(/\.settings-account-column-actions\s*{[^}]*transform:\s*translateX\(6px\)/s);
expect(settingsCss).toMatch(/\.settings-account-column-actions\s*{[^}]*transform:\s*translateX\(20px\)/s);
});
it("offers separate checks for active accounts and every configured account", () => {