This commit is contained in:
Macbook
2026-07-12 05:21:24 +09:00
parent a44d2909b5
commit 9c49b01d7f
4 changed files with 52 additions and 20 deletions
@@ -424,11 +424,11 @@ export default function ReceptionListPage() {
</button>
))}
</div>
<label className="muted" style={{ fontSize: 12 }}>
<label className="order-page-size muted">
<input
type="number"
style={{ width: 56, display: 'inline-block', marginLeft: 4 }}
className="order-page-size-input"
value={draft.size}
onChange={(e) => setD({ size: Number(e.target.value) || 50 })}
/>
+19
View File
@@ -4232,6 +4232,25 @@ html.theme-light .reception-order-page {
cursor: pointer;
}
.order-date-row .quick .ghost.sm:hover { background: var(--elevated, var(--surface-2)); color: var(--primary); }
.order-page-size {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 12px;
}
.order-page-size-input {
width: 56px;
padding: 4px 6px;
font-size: 12px;
background: var(--surface-2, var(--surface));
color: var(--text);
border: 1px solid var(--border);
border-radius: 4px;
}
.order-page-size-input:focus {
outline: none;
border-color: var(--primary);
}
.order-result { margin-left: auto; font-size: 12px; }
.order-search-fields {
display: flex;