Spaces:
Runtime error
Runtime error
Abhishek commited on
Commit ·
08889f3
1
Parent(s): fb564cb
Fix UI tab text color contrast in theme.css
Browse files- assets/theme.css +11 -0
assets/theme.css
CHANGED
|
@@ -104,6 +104,17 @@ body,
|
|
| 104 |
border-color: var(--p5-border);
|
| 105 |
}
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
.gradio-container .footer,
|
| 108 |
.gradio-container .markdown p,
|
| 109 |
.gradio-container .markdown li {
|
|
|
|
| 104 |
border-color: var(--p5-border);
|
| 105 |
}
|
| 106 |
|
| 107 |
+
.gradio-container .tab-nav button {
|
| 108 |
+
color: var(--p5-ink) !important;
|
| 109 |
+
background-color: transparent !important;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
.gradio-container .tab-nav button.selected {
|
| 113 |
+
color: var(--p5-ink) !important;
|
| 114 |
+
background-color: var(--p5-parchment-deep) !important;
|
| 115 |
+
font-weight: bold;
|
| 116 |
+
}
|
| 117 |
+
|
| 118 |
.gradio-container .footer,
|
| 119 |
.gradio-container .markdown p,
|
| 120 |
.gradio-container .markdown li {
|