2

Use compact SVG icons for requests actions

This commit is contained in:
2026-03-12 21:37:07 +01:00
parent 4de8bb9808
commit d4fe3f381d
2 changed files with 16 additions and 5 deletions

View File

@@ -202,6 +202,9 @@ func TestHandlerServesOverviewAndManualActions(t *testing.T) {
if !strings.Contains(queryLogBody, `.status-code`) || strings.Contains(queryLogBody, `.status-pill`) {
t.Fatalf("requests log page should use the simplified status styling")
}
if !strings.Contains(queryLogBody, `function actionIconSVG(kind)`) || strings.Contains(queryLogBody, `🔓`) || strings.Contains(queryLogBody, ``) {
t.Fatalf("requests log page should use compact SVG action icons")
}
if !strings.Contains(queryLogBody, `.tabulator .tabulator-tableholder .tabulator-table { min-width: 100% !important; width: 100% !important; }`) {
t.Fatalf("requests log page should keep the tabulator body at full width")
}