codexmate 0.0.39 → 0.0.40

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.
@@ -437,3 +437,96 @@
437
437
  flex-direction: column;
438
438
  }
439
439
  }
440
+
441
+ .tool-config-write-card {
442
+ display: flex;
443
+ align-items: center;
444
+ justify-content: space-between;
445
+ gap: 16px;
446
+ margin: 0 0 14px;
447
+ padding: 14px 16px;
448
+ border: 1px solid var(--color-border-soft);
449
+ border-radius: 16px;
450
+ background: var(--color-surface-elevated);
451
+ }
452
+
453
+ .tool-config-write-title {
454
+ font-weight: 700;
455
+ color: var(--color-text-primary);
456
+ }
457
+
458
+ .tool-config-write-desc {
459
+ margin: 4px 0 0;
460
+ color: var(--color-text-secondary);
461
+ font-size: 13px;
462
+ line-height: 1.45;
463
+ }
464
+
465
+ .tool-config-write-toggle {
466
+ flex: 0 0 auto;
467
+ margin: 0;
468
+ }
469
+
470
+ .tool-config-write-scope {
471
+ position: relative;
472
+ }
473
+
474
+ .tool-config-write-body {
475
+ transition: filter 0.2s ease, opacity 0.2s ease;
476
+ }
477
+
478
+ .tool-config-write-scope.locked .tool-config-write-body {
479
+ pointer-events: none;
480
+ user-select: none;
481
+ filter: saturate(0.55) blur(0.5px);
482
+ opacity: 0.48;
483
+ }
484
+
485
+ .tool-config-write-overlay {
486
+ position: absolute;
487
+ inset: 0;
488
+ z-index: 20;
489
+ display: flex;
490
+ align-items: center;
491
+ justify-content: center;
492
+ box-sizing: border-box;
493
+ min-height: 360px;
494
+ padding: 16px;
495
+ border-radius: 18px;
496
+ background: rgba(247, 240, 233, 0.78);
497
+ background: color-mix(in srgb, var(--color-bg) 68%, transparent);
498
+ backdrop-filter: blur(2px);
499
+ }
500
+
501
+ .tool-config-write-overlay-card {
502
+ max-width: 460px;
503
+ padding: 18px 20px;
504
+ border: 1px solid var(--color-border-soft);
505
+ border-radius: 18px;
506
+ background: var(--color-surface-elevated);
507
+ box-shadow: var(--shadow-float);
508
+ text-align: center;
509
+ }
510
+
511
+ .tool-config-write-overlay-title {
512
+ font-weight: 800;
513
+ color: var(--color-text-primary);
514
+ margin-bottom: 8px;
515
+ }
516
+
517
+ .tool-config-write-overlay-card p {
518
+ margin: 0 0 14px;
519
+ color: var(--color-text-secondary);
520
+ line-height: 1.55;
521
+ }
522
+
523
+ @media (max-width: 720px) {
524
+ .tool-config-write-card {
525
+ align-items: stretch;
526
+ flex-direction: column;
527
+ }
528
+
529
+ .tool-config-write-toggle {
530
+ justify-content: flex-start;
531
+ }
532
+ }