ApurvaKondekar commited on
Commit
08aa9b3
·
verified ·
1 Parent(s): 2c6f898
Files changed (1) hide show
  1. app.py +41 -10
app.py CHANGED
@@ -1349,28 +1349,59 @@ div[data-testid="video"] button * {
1349
  font-weight: 700 !important;
1350
  }
1351
 
1352
- /* FIX VIDEO BUTTON TEXT VISIBILITY */
 
 
1353
 
 
1354
  div[data-testid="video"] button {
1355
  background: #071020 !important;
1356
  border: 2px solid #00f5ff !important;
1357
- border-radius: 4px !important;
1358
- min-width: 110px !important;
1359
- min-height: 42px !important;
1360
- }
 
 
 
 
 
 
 
1361
 
1362
- /* ALL text inside buttons */
1363
- div[data-testid="video"] button * {
1364
  color: #ffffff !important;
1365
- fill: #ffffff !important;
 
 
 
 
 
 
 
 
 
1366
  stroke: #ffffff !important;
 
 
1367
  opacity: 1 !important;
1368
- visibility: visible !important;
 
 
 
 
 
1369
  font-size: 16px !important;
1370
  font-weight: 700 !important;
 
 
 
 
 
 
 
1371
  }
1372
 
1373
- /* remove shiny overlay */
1374
  div[data-testid="video"] button::before {
1375
  display: none !important;
1376
  }
 
1349
  font-weight: 700 !important;
1350
  }
1351
 
1352
+ /* =====================================================
1353
+ CYBERPUNK VIDEO BUTTON FIX
1354
+ ===================================================== */
1355
 
1356
+ /* upload / record buttons */
1357
  div[data-testid="video"] button {
1358
  background: #071020 !important;
1359
  border: 2px solid #00f5ff !important;
1360
+ border-radius: 6px !important;
1361
+
1362
+ min-width: 130px !important;
1363
+ min-height: 48px !important;
1364
+
1365
+ display: flex !important;
1366
+ align-items: center !important;
1367
+ justify-content: center !important;
1368
+ gap: 10px !important;
1369
+
1370
+ padding: 10px 18px !important;
1371
 
 
 
1372
  color: #ffffff !important;
1373
+ opacity: 1 !important;
1374
+
1375
+ box-shadow: 0 0 12px rgba(0,245,255,0.25) !important;
1376
+ }
1377
+
1378
+ /* icon size */
1379
+ div[data-testid="video"] button svg {
1380
+ width: 20px !important;
1381
+ height: 20px !important;
1382
+
1383
  stroke: #ffffff !important;
1384
+ fill: #ffffff !important;
1385
+
1386
  opacity: 1 !important;
1387
+ }
1388
+
1389
+ /* text beside icon */
1390
+ div[data-testid="video"] button span {
1391
+ color: #ffffff !important;
1392
+
1393
  font-size: 16px !important;
1394
  font-weight: 700 !important;
1395
+
1396
+ letter-spacing: 1px !important;
1397
+
1398
+ opacity: 1 !important;
1399
+ visibility: visible !important;
1400
+
1401
+ display: inline !important;
1402
  }
1403
 
1404
+ /* remove shiny animation overlay */
1405
  div[data-testid="video"] button::before {
1406
  display: none !important;
1407
  }