app.py 5
Browse files
app.py
CHANGED
|
@@ -1333,6 +1333,25 @@ div[class*="settings"],
|
|
| 1333 |
div[class*="footer"] {
|
| 1334 |
display: none !important;
|
| 1335 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1336 |
"""
|
| 1337 |
|
| 1338 |
# =========================================================
|
|
|
|
| 1333 |
div[class*="footer"] {
|
| 1334 |
display: none !important;
|
| 1335 |
}
|
| 1336 |
+
|
| 1337 |
+
/* FIX INVISIBLE VIDEO BUTTON ICONS */
|
| 1338 |
+
|
| 1339 |
+
button svg,
|
| 1340 |
+
button span,
|
| 1341 |
+
button {
|
| 1342 |
+
color: #00f5ff !important;
|
| 1343 |
+
fill: #00f5ff !important;
|
| 1344 |
+
opacity: 1 !important;
|
| 1345 |
+
}
|
| 1346 |
+
|
| 1347 |
+
/* specifically for video action buttons */
|
| 1348 |
+
div[data-testid="video"] button {
|
| 1349 |
+
color: #00f5ff !important;
|
| 1350 |
+
fill: #00f5ff !important;
|
| 1351 |
+
background: #071020 !important;
|
| 1352 |
+
border: 1px solid #00f5ff !important;
|
| 1353 |
+
}
|
| 1354 |
+
|
| 1355 |
"""
|
| 1356 |
|
| 1357 |
# =========================================================
|