ZhouChuYue
commited on
Commit
·
7f3c648
1
Parent(s):
7e33616
fix: improve radio checked dot visibility
Browse files
app.py
CHANGED
|
@@ -361,6 +361,19 @@ ul.options, .gr-dropdown-options {
|
|
| 361 |
color: var(--text) !important;
|
| 362 |
}
|
| 363 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 364 |
/* Footer */
|
| 365 |
.footer-text, .footer-text p {
|
| 366 |
color: var(--muted) !important;
|
|
|
|
| 361 |
color: var(--text) !important;
|
| 362 |
}
|
| 363 |
|
| 364 |
+
/* Radio dot visibility (checked) */
|
| 365 |
+
.gr-check-radio input[type="radio"] {
|
| 366 |
+
width: 16px !important;
|
| 367 |
+
height: 16px !important;
|
| 368 |
+
accent-color: #111827 !important; /* black dot */
|
| 369 |
+
}
|
| 370 |
+
|
| 371 |
+
fieldset label.selected input[type="radio"] {
|
| 372 |
+
accent-color: #111827 !important;
|
| 373 |
+
background-color: #ffffff !important;
|
| 374 |
+
border: 1px solid #111827 !important;
|
| 375 |
+
}
|
| 376 |
+
|
| 377 |
/* Footer */
|
| 378 |
.footer-text, .footer-text p {
|
| 379 |
color: var(--muted) !important;
|