update css
Browse files- css_html_js.py +6 -1
css_html_js.py
CHANGED
@@ -37,10 +37,15 @@ custom_css = """
|
|
37 |
/* Limit the width of the first AutoEvalColumn so that names don't expand too much */
|
38 |
table td:first-child,
|
39 |
table th:first-child {
|
40 |
-
max-width:
|
41 |
overflow: auto;
|
42 |
white-space: nowrap;
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
44 |
.tab-buttons button {
|
45 |
font-size: 20px;
|
46 |
}
|
|
|
37 |
/* Limit the width of the first AutoEvalColumn so that names don't expand too much */
|
38 |
table td:first-child,
|
39 |
table th:first-child {
|
40 |
+
max-width: 400px;
|
41 |
overflow: auto;
|
42 |
white-space: nowrap;
|
43 |
}
|
44 |
+
/* Force the second AutoEvalColumn to be a bit wider */
|
45 |
+
table td:nth-child(2),
|
46 |
+
table th:nth-child(2) {
|
47 |
+
width: 200px;
|
48 |
+
}
|
49 |
.tab-buttons button {
|
50 |
font-size: 20px;
|
51 |
}
|