diff --git a/public/css/admin-components.css b/public/css/admin-components.css index fb0e202..a2efe10 100644 --- a/public/css/admin-components.css +++ b/public/css/admin-components.css @@ -679,6 +679,7 @@ border-left:3px solid var(--adm-error, #ef4444); background:var(--adm-error-bg, #fef2f2); border-radius:4px; + cursor:help; } .platform-orders-table .row-warn a.link, diff --git a/tests/Feature/AdminDashboardRowWarnShouldHaveHelpCursorTest.php b/tests/Feature/AdminDashboardRowWarnShouldHaveHelpCursorTest.php new file mode 100644 index 0000000..4e3a8ba --- /dev/null +++ b/tests/Feature/AdminDashboardRowWarnShouldHaveHelpCursorTest.php @@ -0,0 +1,18 @@ +assertStringContainsString('[data-page="admin.dashboard"] .row-warn{', $css); + $this->assertStringContainsString('cursor:help', $css); + } +}