Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
danielz02
commited on
Commit
•
c11a131
1
Parent(s):
a527b5c
Remove column truncation in css
Browse files
src/display/css_html_js.py
CHANGED
@@ -7,9 +7,9 @@ custom_css = """
|
|
7 |
/* Limit the width of the first AutoEvalColumn so that names don't expand too much */
|
8 |
table td:first-child,
|
9 |
table th:first-child {
|
10 |
-
max-width:
|
11 |
-
overflow:
|
12 |
-
white-space:
|
13 |
}
|
14 |
/* Full width space */
|
15 |
.gradio-container {
|
|
|
7 |
/* Limit the width of the first AutoEvalColumn so that names don't expand too much */
|
8 |
table td:first-child,
|
9 |
table th:first-child {
|
10 |
+
max-width: none; /* Remove any max-width or set it to a higher value */
|
11 |
+
overflow: visible; /* Set overflow to visible to ensure the content is not hidden */
|
12 |
+
white-space: normal; /* Allow the text to wrap */
|
13 |
}
|
14 |
/* Full width space */
|
15 |
.gradio-container {
|