update css
Browse files- css_html_js.py +7 -0
css_html_js.py
CHANGED
@@ -41,6 +41,13 @@ table th:first-child {
|
|
41 |
overflow: auto;
|
42 |
white-space: nowrap;
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
/* Force the column text to wrap */
|
45 |
table > thead {
|
46 |
white-space: normal
|
|
|
41 |
overflow: auto;
|
42 |
white-space: nowrap;
|
43 |
}
|
44 |
+
/* Limit the width of the first AutoEvalColumn so that model names don't expand too much */
|
45 |
+
table td:nth-child(2),
|
46 |
+
table th:nth-child(2) {
|
47 |
+
max-width: 300px;
|
48 |
+
overflow: auto;
|
49 |
+
white-space: nowrap;
|
50 |
+
}
|
51 |
/* Force the column text to wrap */
|
52 |
table > thead {
|
53 |
white-space: normal
|