Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -417,10 +417,16 @@ body, .gradio-container {
|
|
| 417 |
cursor: default !important; min-height: 120px !important;
|
| 418 |
}
|
| 419 |
#error-out textarea {
|
| 420 |
-
background: #1A0E0E !important;
|
| 421 |
-
border
|
| 422 |
-
|
| 423 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 424 |
}
|
| 425 |
.divider { height: 1px; background: #2E3140; margin: 20px 0; }
|
| 426 |
footer { display: none !important; }
|
|
@@ -543,8 +549,16 @@ def build_ui(evaluate_fn):
|
|
| 543 |
accuracy_out = gr.Textbox(label="Accuracy", interactive=False, elem_id="accuracy-out", scale=1)
|
| 544 |
summary_out = gr.Textbox(label="Summary", interactive=False, elem_id="summary-out", scale=2, lines=3)
|
| 545 |
|
| 546 |
-
issues_out = gr.Textbox(label="Issues Detected", interactive=False, lines=5,
|
| 547 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 548 |
|
| 549 |
gr.HTML("""
|
| 550 |
<div style="text-align:right;font-size:11px;color:#4A4E60;margin-top:8px;">
|
|
|
|
| 417 |
cursor: default !important; min-height: 120px !important;
|
| 418 |
}
|
| 419 |
#error-out textarea {
|
| 420 |
+
background: #1A0E0E !important;
|
| 421 |
+
border: 1px solid #5a2020 !important;
|
| 422 |
+
border-radius: 10px !important;
|
| 423 |
+
font-family: 'DM Sans', sans-serif !important;
|
| 424 |
+
font-size: 13.5px !important;
|
| 425 |
+
padding: 14px 16px !important;
|
| 426 |
+
color: #F0997B !important;
|
| 427 |
+
cursor: default !important;
|
| 428 |
+
min-height: 120px !important;
|
| 429 |
+
width: 100% !important;
|
| 430 |
}
|
| 431 |
.divider { height: 1px; background: #2E3140; margin: 20px 0; }
|
| 432 |
footer { display: none !important; }
|
|
|
|
| 549 |
accuracy_out = gr.Textbox(label="Accuracy", interactive=False, elem_id="accuracy-out", scale=1)
|
| 550 |
summary_out = gr.Textbox(label="Summary", interactive=False, elem_id="summary-out", scale=2, lines=3)
|
| 551 |
|
| 552 |
+
issues_out = gr.Textbox(label="Issues Detected", interactive=False, lines=5, elem_id="issues-out")
|
| 553 |
+
|
| 554 |
+
with gr.Row():
|
| 555 |
+
error_out = gr.Textbox(
|
| 556 |
+
label="Status / Errors",
|
| 557 |
+
interactive=False,
|
| 558 |
+
visible=True,
|
| 559 |
+
elem_id="error-out",
|
| 560 |
+
scale=1,
|
| 561 |
+
)
|
| 562 |
|
| 563 |
gr.HTML("""
|
| 564 |
<div style="text-align:right;font-size:11px;color:#4A4E60;margin-top:8px;">
|