style: 의견 목록 상태 셀렉트 너비 확대 + 추이 분석 표 모서리 둥글게(overflow-hidden)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -22,7 +22,7 @@ $badge = static function (string $s): string {
|
|||||||
<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel flex flex-wrap items-center justify-between gap-2">
|
<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel flex flex-wrap items-center justify-between gap-2">
|
||||||
<span class="text-sm font-bold text-gray-700">사용자 의견</span>
|
<span class="text-sm font-bold text-gray-700">사용자 의견</span>
|
||||||
<form method="get" class="flex items-center gap-2 text-sm">
|
<form method="get" class="flex items-center gap-2 text-sm">
|
||||||
<select name="status" class="border border-gray-300 rounded px-2 py-1 text-sm" onchange="this.form.submit()">
|
<select name="status" class="border border-gray-300 rounded px-3 py-1 text-sm w-40 min-w-[10rem]" onchange="this.form.submit()">
|
||||||
<option value="">전체 상태</option>
|
<option value="">전체 상태</option>
|
||||||
<?php foreach (FeedbackModel::STATUSES as $s): ?>
|
<?php foreach (FeedbackModel::STATUSES as $s): ?>
|
||||||
<option value="<?= esc($s, 'attr') ?>" <?= $status === $s ? 'selected' : '' ?>><?= esc(FeedbackModel::statusLabel($s)) ?></option>
|
<option value="<?= esc($s, 'attr') ?>" <?= $status === $s ? 'selected' : '' ?>><?= esc(FeedbackModel::statusLabel($s)) ?></option>
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ $prevAvgLabel = ($trendBasis ?? '') === 'month' ? '전년 동월' : '전년 평
|
|||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<div class="m-2 border border-gray-300 rounded-lg">
|
<div class="m-2 border border-gray-300 rounded-lg overflow-hidden">
|
||||||
<div class="bg-gray-100 px-3 py-1.5 text-sm font-bold border-b">월별 판매 추이 분석 조회 내역</div>
|
<div class="bg-gray-100 px-3 py-1.5 text-sm font-bold border-b">월별 판매 추이 분석 조회 내역</div>
|
||||||
<div class="overflow-auto max-h-[28rem]">
|
<div class="overflow-auto max-h-[28rem]">
|
||||||
<table class="w-full data-table text-sm">
|
<table class="w-full data-table text-sm">
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ $seasonScope = $seasonMonthsLabel !== ''
|
|||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="m-2 border border-gray-300 rounded-lg">
|
<div class="m-2 border border-gray-300 rounded-lg overflow-hidden">
|
||||||
<div class="bg-gray-100 px-3 py-1.5 text-sm font-bold border-b">
|
<div class="bg-gray-100 px-3 py-1.5 text-sm font-bold border-b">
|
||||||
계절별 판매 추이 분석 조회 내역
|
계절별 판매 추이 분석 조회 내역
|
||||||
<?php if ($queried): ?> — <?= esc($seasonScope) ?><?php endif; ?>
|
<?php if ($queried): ?> — <?= esc($seasonScope) ?><?php endif; ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user