feat(admin): add search with submit and safe-area layout

Add submit-based search to admin books page and switch borrows
search from debounced to submit-based for consistency. Update
layout headers and nav bars to respect mobile safe-area insets
via CSS custom properties.
This commit is contained in:
2026-05-24 22:33:59 +08:00
parent c474d2df2f
commit 86cbd56a99
7 changed files with 43 additions and 20 deletions
+4 -1
View File
@@ -140,11 +140,14 @@ html.mobile body {
}
html.no-select * {
-webkit-user-select: none !important;
user-select: none !important;
}
html.no-select input,
html.no-select textarea,
html.no-select [data-selectable] {
-webkit-user-select: text !important;
user-select: text !important;
}
}