Update app.py
Browse files
app.py
CHANGED
@@ -559,12 +559,41 @@ with gr.Blocks(
|
|
559 |
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
|
560 |
}
|
561 |
|
|
|
562 |
.dropdown select {
|
|
|
563 |
border: 1px solid #eee !important;
|
564 |
border-radius: 8px !important;
|
565 |
padding: 0.8rem !important;
|
566 |
color: #000000 !important;
|
567 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
}
|
569 |
|
570 |
/* Button styling */
|
|
|
559 |
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
|
560 |
}
|
561 |
|
562 |
+
/* Dropdown styling */
|
563 |
.dropdown select {
|
564 |
+
background-color: white !important;
|
565 |
border: 1px solid #eee !important;
|
566 |
border-radius: 8px !important;
|
567 |
padding: 0.8rem !important;
|
568 |
color: #000000 !important;
|
569 |
+
}
|
570 |
+
|
571 |
+
/* Style the selected options in dropdown */
|
572 |
+
.selected-options {
|
573 |
+
color: #000000 !important;
|
574 |
+
background: white !important;
|
575 |
+
padding: 4px 8px !important;
|
576 |
+
border-radius: 4px !important;
|
577 |
+
margin: 2px !important;
|
578 |
+
}
|
579 |
+
|
580 |
+
/* Style the dropdown options */
|
581 |
+
.dropdown-option {
|
582 |
+
color: #000000 !important;
|
583 |
+
background: white !important;
|
584 |
+
padding: 8px !important;
|
585 |
+
}
|
586 |
+
|
587 |
+
/* Style the dropdown container */
|
588 |
+
.dropdown-container {
|
589 |
+
background: white !important;
|
590 |
+
border: 1px solid #eee !important;
|
591 |
+
border-radius: 8px !important;
|
592 |
+
}
|
593 |
+
|
594 |
+
/* Style the dropdown arrow */
|
595 |
+
.dropdown-arrow {
|
596 |
+
color: #000000 !important;
|
597 |
}
|
598 |
|
599 |
/* Button styling */
|