Spaces:
Running
Running
Fix strange blinking rows
Browse files
app.py
CHANGED
@@ -247,7 +247,15 @@ custom_css = """
|
|
247 |
footer {visibility: hidden}
|
248 |
|
249 |
.leaderboard-table tr:first-child th {
|
250 |
-
background-color: var(--table-even-background-fill);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
}
|
252 |
|
253 |
.leaderboard-table th:first-child, .leaderboard-table td:first-child {
|
|
|
247 |
footer {visibility: hidden}
|
248 |
|
249 |
.leaderboard-table tr:first-child th {
|
250 |
+
background-color: var(--table-even-background-fill) !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
.leaderboard-table tr td {
|
254 |
+
background-color: var(--table-even-background-fill) !important;
|
255 |
+
}
|
256 |
+
|
257 |
+
.leaderboard-table tr.row_odd td {
|
258 |
+
background-color: var(--table-odd-background-fill) !important;
|
259 |
}
|
260 |
|
261 |
.leaderboard-table th:first-child, .leaderboard-table td:first-child {
|