소스 검색

Fix: Add missing .hidden CSS class to properly hide loading indicators

Root cause: JavaScript was adding/removing the 'hidden' class to toggle
visibility of loading messages and empty states, but the CSS file was
missing a general .hidden class rule. Only .message.hidden was defined.

This caused loading indicators like "Loading statistics..." and
"No finished books yet" to persist on the Reading Log page even after
data loaded successfully.

Fix: Added .hidden { display: none; } rule to style.css

Fixes #3

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Brad Lance 3 달 전
부모
커밋
ad742a6
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      app/static/css/style.css

+ 5 - 0
app/static/css/style.css

@@ -92,6 +92,11 @@ header h1 {
     border: 1px solid #f5c6cb;
 }
 
+/* General hidden class */
+.hidden {
+    display: none;
+}
+
 .message.hidden {
     display: none;
 }