handler-playable-sdk 0.5.553 → 0.5.556

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6368,6 +6368,290 @@
6368
6368
  }
6369
6369
  }
6370
6370
 
6371
+ /* Canva ZIP Wizard Styles */
6372
+ .canva-wizard-overlay {
6373
+ position: fixed;
6374
+ top: 0;
6375
+ left: 0;
6376
+ right: 0;
6377
+ bottom: 0;
6378
+ background: rgba(0, 0, 0, 0.75);
6379
+ backdrop-filter: blur(4px);
6380
+ z-index: 10000;
6381
+ display: flex;
6382
+ align-items: center;
6383
+ justify-content: center;
6384
+ padding: 20px;
6385
+ animation: fade-in 0.2s ease-out;
6386
+ }
6387
+
6388
+ @keyframes fade-in {
6389
+ from {
6390
+ opacity: 0;
6391
+ }
6392
+ to {
6393
+ opacity: 1;
6394
+ }
6395
+ }
6396
+
6397
+ .canva-wizard-modal {
6398
+ background: var(--ui-surface);
6399
+ border: 1px solid var(--ui-border);
6400
+ border-radius: 16px;
6401
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
6402
+ width: 100%;
6403
+ max-width: 1200px;
6404
+ max-height: 90vh;
6405
+ display: flex;
6406
+ flex-direction: column;
6407
+ overflow: hidden;
6408
+ animation: slide-up 0.3s ease-out;
6409
+ }
6410
+
6411
+ @keyframes slide-up {
6412
+ from {
6413
+ transform: translateY(20px);
6414
+ opacity: 0;
6415
+ }
6416
+ to {
6417
+ transform: translateY(0);
6418
+ opacity: 1;
6419
+ }
6420
+ }
6421
+
6422
+ .canva-wizard-header {
6423
+ display: flex;
6424
+ align-items: center;
6425
+ justify-content: space-between;
6426
+ padding: 20px 24px;
6427
+ border-bottom: 1px solid var(--ui-border);
6428
+ background: var(--ui-surface-2);
6429
+ }
6430
+
6431
+ .canva-wizard-title {
6432
+ display: flex;
6433
+ align-items: center;
6434
+ gap: 12px;
6435
+ }
6436
+
6437
+ .canva-wizard-icon {
6438
+ font-size: 24px;
6439
+ }
6440
+
6441
+ .canva-wizard-title h2 {
6442
+ margin: 0;
6443
+ font-size: 18px;
6444
+ font-weight: 600;
6445
+ color: var(--ui-text);
6446
+ }
6447
+
6448
+ .canva-wizard-subtitle {
6449
+ margin: 4px 0 0 0;
6450
+ font-size: 12px;
6451
+ color: var(--ui-muted);
6452
+ }
6453
+
6454
+ .canva-wizard-close {
6455
+ width: 32px;
6456
+ height: 32px;
6457
+ border: none;
6458
+ background: transparent;
6459
+ color: var(--ui-text);
6460
+ font-size: 20px;
6461
+ cursor: pointer;
6462
+ border-radius: 6px;
6463
+ display: flex;
6464
+ align-items: center;
6465
+ justify-content: center;
6466
+ transition: background 0.2s;
6467
+ }
6468
+
6469
+ .canva-wizard-close:hover {
6470
+ background: var(--ui-surface-3);
6471
+ }
6472
+
6473
+ .canva-wizard-progress {
6474
+ padding: 12px 24px;
6475
+ background: var(--ui-surface-2);
6476
+ border-bottom: 1px solid var(--ui-border);
6477
+ }
6478
+
6479
+ .canva-wizard-progress-bar {
6480
+ width: 100%;
6481
+ height: 6px;
6482
+ background: var(--ui-surface-3);
6483
+ border-radius: 3px;
6484
+ overflow: hidden;
6485
+ margin-bottom: 8px;
6486
+ }
6487
+
6488
+ .canva-wizard-progress-fill {
6489
+ height: 100%;
6490
+ background: var(--ui-accent);
6491
+ transition: width 0.3s ease;
6492
+ border-radius: 3px;
6493
+ }
6494
+
6495
+ .canva-wizard-progress-text {
6496
+ font-size: 11px;
6497
+ color: var(--ui-muted);
6498
+ }
6499
+
6500
+ .canva-wizard-body {
6501
+ flex: 1;
6502
+ overflow-y: auto;
6503
+ padding: 24px;
6504
+ }
6505
+
6506
+ .canva-wizard-gallery {
6507
+ display: grid;
6508
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
6509
+ gap: 16px;
6510
+ }
6511
+
6512
+ .canva-asset-card {
6513
+ background: var(--ui-surface-2);
6514
+ border: 1px solid var(--ui-border);
6515
+ border-radius: 12px;
6516
+ padding: 16px;
6517
+ display: flex;
6518
+ flex-direction: column;
6519
+ gap: 12px;
6520
+ transition: all 0.2s;
6521
+ }
6522
+
6523
+ .canva-asset-card:hover {
6524
+ border-color: var(--ui-accent-overlay-2);
6525
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
6526
+ }
6527
+
6528
+ .canva-asset-card.active {
6529
+ border-color: var(--ui-accent);
6530
+ background: var(--ui-surface-3);
6531
+ }
6532
+
6533
+ .canva-asset-preview {
6534
+ width: 100%;
6535
+ height: 180px;
6536
+ background: var(--ui-black);
6537
+ border-radius: 8px;
6538
+ overflow: hidden;
6539
+ display: flex;
6540
+ align-items: center;
6541
+ justify-content: center;
6542
+ border: 1px solid var(--ui-border);
6543
+ }
6544
+
6545
+ .canva-asset-preview img {
6546
+ max-width: 100%;
6547
+ max-height: 100%;
6548
+ object-fit: contain;
6549
+ }
6550
+
6551
+ .canva-asset-info {
6552
+ display: flex;
6553
+ flex-direction: column;
6554
+ gap: 4px;
6555
+ }
6556
+
6557
+ .canva-asset-name {
6558
+ font-size: 13px;
6559
+ font-weight: 600;
6560
+ color: var(--ui-text);
6561
+ white-space: nowrap;
6562
+ overflow: hidden;
6563
+ text-overflow: ellipsis;
6564
+ }
6565
+
6566
+ .canva-asset-position {
6567
+ font-size: 11px;
6568
+ color: var(--ui-muted);
6569
+ font-family: "JetBrains Mono", "SF Mono", "Consolas", "Monaco", monospace;
6570
+ }
6571
+
6572
+ .canva-asset-category {
6573
+ display: flex;
6574
+ flex-direction: column;
6575
+ gap: 4px;
6576
+ }
6577
+
6578
+ .canva-asset-category label {
6579
+ font-size: 11px;
6580
+ color: var(--ui-muted);
6581
+ font-weight: 500;
6582
+ }
6583
+
6584
+ .canva-asset-actions {
6585
+ display: flex;
6586
+ flex-direction: column;
6587
+ gap: 6px;
6588
+ }
6589
+
6590
+ .canva-asset-replace {
6591
+ display: flex;
6592
+ flex-direction: column;
6593
+ gap: 4px;
6594
+ padding-top: 8px;
6595
+ border-top: 1px solid var(--ui-border);
6596
+ }
6597
+
6598
+ .canva-asset-replace label {
6599
+ font-size: 11px;
6600
+ color: var(--ui-muted);
6601
+ font-weight: 500;
6602
+ }
6603
+
6604
+ .canva-asset-replace-hint {
6605
+ font-size: 11px;
6606
+ color: var(--ui-muted);
6607
+ font-style: italic;
6608
+ padding: 8px;
6609
+ background: var(--ui-surface);
6610
+ border-radius: 6px;
6611
+ text-align: center;
6612
+ }
6613
+
6614
+ .canva-wizard-footer {
6615
+ display: flex;
6616
+ align-items: center;
6617
+ justify-content: space-between;
6618
+ padding: 16px 24px;
6619
+ border-top: 1px solid var(--ui-border);
6620
+ background: var(--ui-surface-2);
6621
+ }
6622
+
6623
+ .canva-wizard-footer-info {
6624
+ flex: 1;
6625
+ }
6626
+
6627
+ .canva-wizard-hint {
6628
+ font-size: 11px;
6629
+ color: var(--ui-muted);
6630
+ }
6631
+
6632
+ .canva-wizard-footer-actions {
6633
+ display: flex;
6634
+ gap: 8px;
6635
+ }
6636
+
6637
+ .inspector-input-sm {
6638
+ padding: 4px 6px;
6639
+ font-size: 11px;
6640
+ }
6641
+
6642
+ /* Responsive */
6643
+ @media (max-width: 768px) {
6644
+ .canva-wizard-modal {
6645
+ max-width: 100%;
6646
+ max-height: 100vh;
6647
+ border-radius: 0;
6648
+ }
6649
+
6650
+ .canva-wizard-gallery {
6651
+ grid-template-columns: 1fr;
6652
+ }
6653
+ }
6654
+
6371
6655
 
6372
6656
  /* ========== 12-responsive.css ========== */
6373
6657
  /* 12 Responsive */