32 lines
2.2 KiB
PHP
32 lines
2.2 KiB
PHP
<?php
|
|
|
|
$adminListPageClass = 'space-y-6';
|
|
$adminListHeaderCardClass = 'rounded-xl border border-gray-100 bg-white p-5 shadow-sm';
|
|
$adminListHeaderTitleClass = 'text-lg font-bold text-gray-800';
|
|
$adminListHeaderSubtitleClass = 'mt-1 text-sm text-gray-500';
|
|
$adminListFilterCardClass = 'bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden mb-6';
|
|
$adminListFilterInnerClass = 'p-6 border-b border-gray-100 bg-gray-50';
|
|
$adminListFilterFormClass = 'flex flex-wrap items-end gap-3';
|
|
$adminListFilterLabelClass = 'block mb-1 text-xs font-semibold uppercase tracking-wider text-gray-500';
|
|
$adminListFilterInputClass = 'px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-indigo-500 focus:border-indigo-500 text-sm';
|
|
$adminListPrimaryButtonClass = 'bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold shadow-sm transition hover:bg-indigo-700';
|
|
$adminListSecondaryButtonClass = 'px-4 py-2 bg-white border border-gray-300 rounded-lg text-sm font-semibold text-gray-700 hover:bg-gray-50 transition';
|
|
$adminListCardClass = 'bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden';
|
|
$adminListSectionHeadClass = 'px-6 py-4 border-b border-gray-100 bg-gray-50';
|
|
$adminListSectionTitleClass = 'text-base font-semibold text-gray-700';
|
|
$adminListSectionDescClass = 'text-xs text-gray-400 mt-1';
|
|
$adminListTableWrapClass = 'overflow-x-auto';
|
|
$adminListTableClass = 'w-full text-sm';
|
|
$adminListTableHeadRowClass = 'bg-gray-50 border-b border-gray-100';
|
|
$adminListTableHeadCellClass = 'px-4 py-3 text-left text-xs font-semibold uppercase tracking-wider text-gray-500';
|
|
$adminListTableBodyClass = 'divide-y divide-gray-100';
|
|
$adminListTableRowClass = 'hover:bg-gray-50 transition';
|
|
$adminListPrimaryTextClass = 'text-sm font-semibold text-gray-800';
|
|
$adminListSecondaryTextClass = 'text-xs text-gray-400';
|
|
$adminListBodyTextClass = 'text-sm text-gray-600';
|
|
$adminListNumericTextClass = 'text-sm font-mono';
|
|
$adminListPaginationClass = 'p-4 border-t border-gray-100 text-sm text-gray-600';
|
|
$adminListEmptyClass = 'px-4 py-12 text-center text-gray-400';
|
|
$adminListBadgeBaseClass = 'inline-flex items-center gap-1.5 rounded-full border px-2 py-0.5 text-xs font-semibold';
|
|
$adminListActionButtonClass = 'text-xs font-semibold px-3 py-1.5 rounded transition cursor-pointer';
|