Merge main
Browse files- src/display/css_html_js.py +14 -0
src/display/css_html_js.py
CHANGED
|
@@ -150,6 +150,20 @@ custom_css = """
|
|
| 150 |
background-color: #f9f9f9; /* Very light gray background for even rows for zebra striping */
|
| 151 |
}
|
| 152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
|
| 154 |
"""
|
| 155 |
|
|
|
|
| 150 |
background-color: #f9f9f9; /* Very light gray background for even rows for zebra striping */
|
| 151 |
}
|
| 152 |
|
| 153 |
+
@media (prefers-color-scheme: dark) {
|
| 154 |
+
#left-container #black-logo {
|
| 155 |
+
display: none;
|
| 156 |
+
}
|
| 157 |
+
#left-container #white-logo {
|
| 158 |
+
display: block;
|
| 159 |
+
}
|
| 160 |
+
.benchmark-table-container th {
|
| 161 |
+
background-color: #3b3b3b;
|
| 162 |
+
}
|
| 163 |
+
.benchmark-table-container tbody tr:nth-child(even) {
|
| 164 |
+
background-color: #2b2b2b;
|
| 165 |
+
}
|
| 166 |
+
}
|
| 167 |
|
| 168 |
"""
|
| 169 |
|