admin-components: make row-warn-prefix a subtle pill badge (scoped)

This commit is contained in:
萝卜
2026-03-14 13:26:45 +00:00
parent 646f1b972d
commit d9b7e32e32
2 changed files with 35 additions and 1 deletions

View File

@@ -93,7 +93,7 @@
.platform-orders-table .row-warn{margin-top:4px;padding:4px 6px;border-left:3px solid #d9534f;background:#fff6f6;border-radius:4px;}
.platform-orders-table .row-warn a.link{color:#b52b27;text-decoration:underline;}
.platform-orders-table .row-warn a.link:hover{text-decoration:none;}
.platform-orders-table .row-warn-prefix{font-weight:600;}
.platform-orders-table .row-warn-prefix{font-weight:600;display:inline-block;padding:1px 6px;border-radius:10px;background:#ffecec;color:#b52b27;margin-right:4px;}
/* 平台订单列表:精简视图也要可达的治理提示(对账/退款不一致) */
.platform-orders-table .governance-hints{margin-bottom:6px;}

View File

@@ -0,0 +1,34 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexRowWarnPrefixStyleScopedTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_row_warn_prefix_style_is_scoped_under_platform_orders_table_only(): void
{
$this->loginAsPlatformAdmin();
$css = file_get_contents(public_path('css/admin-components.css'));
$this->assertIsString($css);
$this->assertStringContainsString('.platform-orders-table .row-warn-prefix{', $css);
// 避免全局污染
$this->assertStringNotContainsString("\n.row-warn-prefix{", $css);
}
}