Tushar Bhatnagar commited on
Commit
186dd38
·
unverified ·
2 Parent(s): 1f9381012960e4

Merge pull request #11 from alphaaico/claude/ai-note-taking-app-f8VEw

Browse files

fix: radio buttons unclickable due to CSS targeting all inputs

The `.dark input` rule was overriding radio button styling, making
them blend into the dark background. Scoped to text/password/number
inputs only and added explicit radio accent-color for visibility.

Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -605,11 +605,15 @@ footer { display: none !important; }
605
  #notes-display, #todos-display, #reminders-display, #workflows-display {
606
  min-height: 200px;
607
  }
608
- .dark input, .dark textarea {
609
  background: #1b2838 !important;
610
  border-color: #2a3f5f !important;
611
  color: #d0d0d0 !important;
612
  }
 
 
 
 
613
  .dark .block {
614
  background: #0f1d2e !important;
615
  border-color: #2a3f5f !important;
 
605
  #notes-display, #todos-display, #reminders-display, #workflows-display {
606
  min-height: 200px;
607
  }
608
+ .dark input[type="text"], .dark input[type="password"], .dark input[type="number"], .dark textarea {
609
  background: #1b2838 !important;
610
  border-color: #2a3f5f !important;
611
  color: #d0d0d0 !important;
612
  }
613
+ .dark input[type="radio"] {
614
+ accent-color: #7ec8e3 !important;
615
+ cursor: pointer !important;
616
+ }
617
  .dark .block {
618
  background: #0f1d2e !important;
619
  border-color: #2a3f5f !important;