Remove outer input block borders
Browse files
app.py
CHANGED
|
@@ -448,6 +448,16 @@ CSS = """
|
|
| 448 |
box-shadow: 0 0 0 3px rgba(22, 91, 85, 0.08) !important;
|
| 449 |
}
|
| 450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 451 |
.gradio-container button {
|
| 452 |
border-radius: 14px !important;
|
| 453 |
font-weight: 600 !important;
|
|
|
|
| 448 |
box-shadow: 0 0 0 3px rgba(22, 91, 85, 0.08) !important;
|
| 449 |
}
|
| 450 |
|
| 451 |
+
.gradio-container .block:has(textarea[data-testid="textbox"]),
|
| 452 |
+
.gradio-container .block:has(input),
|
| 453 |
+
.gradio-container .block:has(select),
|
| 454 |
+
.gradio-container .block:has([data-testid="file-upload"]),
|
| 455 |
+
.gradio-container .block:has(.svelte-1xfsv4t.container) {
|
| 456 |
+
border-color: transparent !important;
|
| 457 |
+
background: transparent !important;
|
| 458 |
+
box-shadow: none !important;
|
| 459 |
+
}
|
| 460 |
+
|
| 461 |
.gradio-container button {
|
| 462 |
border-radius: 14px !important;
|
| 463 |
font-weight: 600 !important;
|