From ca071940b13dcf6a1ad328cc71ab364f070ceedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E9=A3=9E=E6=B4=8B?= <15778543+xufeiyang6017@user.noreply.gitee.com> Date: Wed, 21 Jan 2026 10:43:11 +0800 Subject: [PATCH] Fix line wrapping issue for date inputs and total count in filter bar --- web/src/main/resources/static/index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/web/src/main/resources/static/index.html b/web/src/main/resources/static/index.html index f767be5..aff98c1 100644 --- a/web/src/main/resources/static/index.html +++ b/web/src/main/resources/static/index.html @@ -159,6 +159,26 @@ display: flex; gap: 10px; align-items: center; + white-space: nowrap; + } + + .filter-bar span { + white-space: nowrap; + } + + .filter-bar input[type="date"] { + white-space: nowrap; + min-width: 130px; + } + + .filter-bar select { + white-space: nowrap; + min-width: 100px; + } + + .filter-bar input[type="text"] { + white-space: nowrap; + min-width: 150px; } .filter-bar button {