Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -31,26 +31,34 @@ blue_ui_css = """
|
|
31 |
background-color: #667eea !important;
|
32 |
}
|
33 |
|
34 |
-
/*
|
35 |
.gradio-container .tab-nav button[aria-selected="true"],
|
36 |
.gradio-container .tab-nav button.selected,
|
37 |
.gradio-container button[role="tab"][aria-selected="true"],
|
38 |
-
.gradio-container button[role="tab"].selected
|
|
|
|
|
|
|
|
|
|
|
39 |
color: #667eea !important;
|
40 |
border-bottom: 2px solid #667eea !important;
|
|
|
41 |
}
|
42 |
|
43 |
-
|
44 |
-
.gradio-container
|
45 |
-
|
|
|
|
|
46 |
border-bottom: 2px solid #667eea !important;
|
|
|
47 |
}
|
48 |
|
49 |
-
|
50 |
-
.gradio-container
|
51 |
-
.gradio-container [
|
52 |
-
color: #667eea !important;
|
53 |
-
border-bottom: 2px solid #667eea !important;
|
54 |
}
|
55 |
"""
|
56 |
|
|
|
31 |
background-color: #667eea !important;
|
32 |
}
|
33 |
|
34 |
+
/* Comprehensive tab underline styling - blue instead of orange */
|
35 |
.gradio-container .tab-nav button[aria-selected="true"],
|
36 |
.gradio-container .tab-nav button.selected,
|
37 |
.gradio-container button[role="tab"][aria-selected="true"],
|
38 |
+
.gradio-container button[role="tab"].selected,
|
39 |
+
.gradio-container .tabs button[aria-selected="true"],
|
40 |
+
.gradio-container .tabs button.selected,
|
41 |
+
.gradio-container [data-testid="tab"] button[aria-selected="true"],
|
42 |
+
.gradio-container .tab button[aria-selected="true"],
|
43 |
+
.gradio-container [role="tablist"] button[aria-selected="true"] {
|
44 |
color: #667eea !important;
|
45 |
border-bottom: 2px solid #667eea !important;
|
46 |
+
border-bottom-color: #667eea !important;
|
47 |
}
|
48 |
|
49 |
+
/* Override any orange underlines specifically */
|
50 |
+
.gradio-container button[role="tab"][aria-selected="true"],
|
51 |
+
.gradio-container .tabs .tab-nav button[aria-selected="true"],
|
52 |
+
.gradio-container .tab-nav .tab-item[aria-selected="true"],
|
53 |
+
.gradio-container .gradio-tabs button[aria-selected="true"] {
|
54 |
border-bottom: 2px solid #667eea !important;
|
55 |
+
border-bottom-color: #667eea !important;
|
56 |
}
|
57 |
|
58 |
+
/* Force override orange tab indicators */
|
59 |
+
.gradio-container *[style*="border-bottom"][style*="orange"],
|
60 |
+
.gradio-container *[style*="border-color"][style*="orange"] {
|
61 |
+
border-bottom-color: #667eea !important;
|
|
|
62 |
}
|
63 |
"""
|
64 |
|