Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -433,12 +433,12 @@ head = """
|
|
| 433 |
</head>
|
| 434 |
<style>
|
| 435 |
/* Submit按钮默认和悬停效果 */
|
| 436 |
-
button.lg.secondary.svelte-
|
| 437 |
background-color: #ff9933 !important;
|
| 438 |
transition: background-color 0.3s ease !important;
|
| 439 |
}
|
| 440 |
|
| 441 |
-
button.lg.secondary.svelte-
|
| 442 |
background-color: #ff7777 !important; /* 悬停时颜色加深 */
|
| 443 |
}
|
| 444 |
|
|
@@ -448,12 +448,12 @@ button.lg.secondary.svelte-1gz44hr span {
|
|
| 448 |
}
|
| 449 |
|
| 450 |
/* 隐藏表头中的第二列 */
|
| 451 |
-
.table-wrap .svelte-
|
| 452 |
display: none;
|
| 453 |
}
|
| 454 |
|
| 455 |
/* 隐藏表格内容中的第二列 */
|
| 456 |
-
.table-wrap .svelte-
|
| 457 |
display: none;
|
| 458 |
}
|
| 459 |
|
|
|
|
| 433 |
</head>
|
| 434 |
<style>
|
| 435 |
/* Submit按钮默认和悬停效果 */
|
| 436 |
+
button.lg.secondary.svelte-1gz44hr {
|
| 437 |
background-color: #ff9933 !important;
|
| 438 |
transition: background-color 0.3s ease !important;
|
| 439 |
}
|
| 440 |
|
| 441 |
+
button.lg.secondary.svelte-1gz44hr:hover {
|
| 442 |
background-color: #ff7777 !important; /* 悬停时颜色加深 */
|
| 443 |
}
|
| 444 |
|
|
|
|
| 448 |
}
|
| 449 |
|
| 450 |
/* 隐藏表头中的第二列 */
|
| 451 |
+
.table-wrap .svelte-p5q82i th:nth-child(2) {
|
| 452 |
display: none;
|
| 453 |
}
|
| 454 |
|
| 455 |
/* 隐藏表格内容中的第二列 */
|
| 456 |
+
.table-wrap .svelte-p5q82i td:nth-child(2) {
|
| 457 |
display: none;
|
| 458 |
}
|
| 459 |
|