ZhouChuYue commited on
Commit
028a7af
·
1 Parent(s): 928f73d

fix: ensure all labels and descriptions (including Radio groups) are black with white shadow

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -230,7 +230,10 @@ body {
230
  }
231
 
232
  /* Labels - High Contrast, Clean Black */
233
- .block > label > span, .form > label > span, .gr-form > label > span {
 
 
 
234
  color: #000000 !important; /* Pure Black */
235
  font-weight: 700 !important;
236
  font-size: 1rem !important;
@@ -241,7 +244,7 @@ body {
241
  }
242
 
243
  /* Info Text (Description) */
244
- span.description {
245
  color: #000000 !important;
246
  font-weight: 600 !important;
247
  text-shadow: 0 0 2px #ffffff !important;
 
230
  }
231
 
232
  /* Labels - High Contrast, Clean Black */
233
+ .block > label > span,
234
+ .form > label > span,
235
+ .gr-form > label > span,
236
+ .label-wrap > span {
237
  color: #000000 !important; /* Pure Black */
238
  font-weight: 700 !important;
239
  font-size: 1rem !important;
 
244
  }
245
 
246
  /* Info Text (Description) */
247
+ span.description, .description {
248
  color: #000000 !important;
249
  font-weight: 600 !important;
250
  text-shadow: 0 0 2px #ffffff !important;