Update app.py
Browse files
app.py
CHANGED
|
@@ -96,6 +96,18 @@ CSS = """
|
|
| 96 |
min-width:120px !important;
|
| 97 |
flex:0 0 auto !important;
|
| 98 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
"""
|
| 100 |
|
| 101 |
# ----------------------------
|
|
|
|
| 96 |
min-width:120px !important;
|
| 97 |
flex:0 0 auto !important;
|
| 98 |
}
|
| 99 |
+
/* Textbox: remove the extra OUTER border line, keep the textarea border */
|
| 100 |
+
#input_box,
|
| 101 |
+
#input_box > div,
|
| 102 |
+
#input_box .gr-block,
|
| 103 |
+
#input_box .gr-box,
|
| 104 |
+
#input_box .gr-panel,
|
| 105 |
+
#input_box .wrap,
|
| 106 |
+
#input_box .container{
|
| 107 |
+
border: 0 !important;
|
| 108 |
+
box-shadow: none !important;
|
| 109 |
+
background: transparent !important;
|
| 110 |
+
}
|
| 111 |
"""
|
| 112 |
|
| 113 |
# ----------------------------
|