style: Replace inline border-top styles with reusable CSS class
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m7s

Move border-top styling from inline attributes to .table-responsive--separator class in admin.css. Removes duplication and maintains consistent design system across all search+table pages (Blog, Clients, Inquiries).

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-09 22:05:09 +09:00
parent fd74240a72
commit 59811cee52
4 changed files with 11 additions and 3 deletions
@@ -29,7 +29,7 @@
</div> </div>
@if (Model.Items.Count > 0) @if (Model.Items.Count > 0)
{ {
<div class="table-responsive" style="border-top: 1px solid var(--border-color-light);"> <div class="table-responsive table-responsive--separator">
<table class="table table-vcenter card-table table-hover"> <table class="table table-vcenter card-table table-hover">
<thead> <thead>
<tr> <tr>
@@ -42,7 +42,7 @@
</div> </div>
@if (Model.Items.Count > 0) @if (Model.Items.Count > 0)
{ {
<div class="table-responsive" style="border-top: 1px solid var(--border-color-light);"> <div class="table-responsive table-responsive--separator">
<table class="table table-vcenter card-table table-hover"> <table class="table table-vcenter card-table table-hover">
<thead> <thead>
<tr> <tr>
@@ -20,7 +20,7 @@
</div> </div>
@if (Model.Items.Count > 0) @if (Model.Items.Count > 0)
{ {
<div class="table-responsive" style="border-top: 1px solid var(--border-color-light);"> <div class="table-responsive table-responsive--separator">
<table class="table table-vcenter card-table table-hover"> <table class="table table-vcenter card-table table-hover">
<thead> <thead>
<tr> <tr>
+8
View File
@@ -2118,3 +2118,11 @@ textarea:focus-visible {
} }
} }
/* ============================================================================
Table Responsive Separator
============================================================================ */
.table-responsive--separator {
border-top: 1px solid var(--border-color-light);
}