@co0ontty/wand 1.14.6 → 1.15.0

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.
@@ -7325,49 +7325,391 @@
7325
7325
  /* ── Settings modal ── */
7326
7326
 
7327
7327
  .settings-modal {
7328
- max-width: 520px;
7329
- max-height: 80vh;
7328
+ width: min(1080px, 100%);
7329
+ max-width: 1080px;
7330
+ height: min(88vh, 920px);
7331
+ max-height: min(88vh, 920px);
7332
+ min-height: min(88vh, 920px);
7333
+ overflow: hidden;
7334
+ }
7335
+
7336
+ .settings-modal-header {
7337
+ align-items: flex-start;
7338
+ gap: 16px;
7339
+ padding-bottom: 14px;
7340
+ }
7341
+
7342
+ .settings-modal-title-group {
7343
+ display: flex;
7344
+ flex-direction: column;
7345
+ gap: 4px;
7346
+ min-width: 0;
7347
+ }
7348
+
7349
+ .settings-modal-subtitle {
7350
+ font-size: 0.75rem;
7351
+ color: var(--text-muted);
7352
+ line-height: 1.5;
7353
+ }
7354
+
7355
+ .settings-modal-body {
7356
+ padding-top: 18px;
7357
+ flex: 1 1 auto;
7358
+ min-height: 0;
7359
+ overflow: hidden;
7360
+ }
7361
+
7362
+ .settings-layout {
7363
+ display: grid;
7364
+ grid-template-columns: 260px minmax(0, 1fr);
7365
+ gap: 22px;
7366
+ min-height: 0;
7367
+ height: 100%;
7368
+ align-items: stretch;
7369
+ }
7370
+
7371
+ .settings-layout > * {
7372
+ min-height: 0;
7373
+ }
7374
+
7375
+ .settings-sidebar {
7376
+ display: flex;
7377
+ flex-direction: column;
7378
+ gap: 14px;
7379
+ min-width: 0;
7380
+ min-height: 0;
7381
+ padding-right: 6px;
7382
+ border-right: 1px solid var(--border-subtle);
7383
+ overflow: hidden;
7384
+ }
7385
+
7386
+ .settings-sidebar-header,
7387
+ .settings-sidebar-title,
7388
+ .settings-sidebar-hint {
7389
+ flex-shrink: 0;
7390
+ }
7391
+
7392
+ .settings-sidebar-header {
7393
+ display: flex;
7394
+ flex-direction: column;
7395
+ gap: 4px;
7396
+ padding: 2px 4px 0;
7397
+ }
7398
+
7399
+ .settings-sidebar-title {
7400
+ font-size: 0.875rem;
7401
+ font-weight: 700;
7402
+ color: var(--text-primary);
7403
+ letter-spacing: 0.01em;
7404
+ }
7405
+
7406
+ .settings-sidebar-hint {
7407
+ font-size: 0.75rem;
7408
+ color: var(--text-muted);
7409
+ line-height: 1.5;
7330
7410
  }
7331
7411
 
7332
7412
  .settings-tabs {
7333
7413
  display: flex;
7334
- gap: 2px;
7335
- border-bottom: 1px solid var(--border-subtle);
7336
- margin-bottom: 16px;
7337
- padding-bottom: 0;
7414
+ flex-direction: column;
7415
+ gap: 8px;
7416
+ margin: 0;
7417
+ padding: 0 10px 0 0;
7418
+ min-height: 0;
7419
+ overflow: auto;
7420
+ position: relative;
7421
+ z-index: 2;
7422
+ background: transparent;
7423
+ }
7424
+
7425
+ .settings-tabs::-webkit-scrollbar {
7426
+ width: 6px;
7427
+ height: 6px;
7428
+ }
7429
+
7430
+ .settings-tabs::-webkit-scrollbar-thumb {
7431
+ background: rgba(150, 118, 85, 0.22);
7432
+ border-radius: 999px;
7433
+ }
7434
+
7435
+ .settings-tabs::-webkit-scrollbar-thumb:hover {
7436
+ background: rgba(150, 118, 85, 0.36);
7437
+ }
7438
+
7439
+ .settings-tabs {
7440
+ scrollbar-width: thin;
7338
7441
  }
7339
7442
 
7340
7443
  .settings-tab {
7341
- padding: 8px 14px;
7444
+ position: relative;
7445
+ display: flex;
7446
+ flex-direction: column;
7447
+ align-items: flex-start;
7448
+ gap: 4px;
7449
+ width: 100%;
7450
+ padding: 12px 14px 12px 16px;
7342
7451
  font-size: 0.8125rem;
7343
- font-weight: 500;
7452
+ font-weight: 600;
7344
7453
  color: var(--text-secondary);
7345
- background: none;
7346
- border: none;
7347
- border-bottom: 2px solid transparent;
7348
- border-radius: var(--radius-sm) var(--radius-sm) 0 0;
7454
+ background: rgba(255, 255, 255, 0.55);
7455
+ border: 1px solid transparent;
7456
+ border-radius: 16px;
7349
7457
  cursor: pointer;
7350
- transition: color 0.15s, border-color 0.15s, background 0.15s;
7351
- white-space: nowrap;
7458
+ transition: color 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
7459
+ text-align: left;
7460
+ }
7461
+
7462
+ .settings-tab::before {
7463
+ content: "";
7464
+ position: absolute;
7465
+ left: 0;
7466
+ top: 10px;
7467
+ bottom: 10px;
7468
+ width: 3px;
7469
+ border-radius: 999px;
7470
+ background: transparent;
7471
+ transition: background 0.15s ease;
7352
7472
  }
7353
7473
 
7354
7474
  .settings-tab:hover {
7355
7475
  color: var(--text-primary);
7356
- background: rgba(197, 101, 61, 0.06);
7476
+ background: rgba(197, 101, 61, 0.08);
7477
+ border-color: rgba(197, 101, 61, 0.12);
7478
+ transform: translateX(2px);
7479
+ }
7480
+
7481
+ .settings-tab:focus-visible {
7482
+ outline: 2px solid var(--accent);
7483
+ outline-offset: 2px;
7357
7484
  }
7358
7485
 
7359
7486
  .settings-tab.active {
7360
7487
  color: var(--accent);
7361
- border-bottom-color: var(--accent);
7362
- background: var(--accent-muted);
7488
+ border-color: rgba(197, 101, 61, 0.16);
7489
+ background: linear-gradient(135deg, rgba(197, 101, 61, 0.12), rgba(197, 101, 61, 0.05));
7490
+ box-shadow: inset 0 0 0 1px rgba(197, 101, 61, 0.08), var(--shadow-xs);
7491
+ }
7492
+
7493
+ .settings-tab.active::before {
7494
+ background: var(--accent);
7495
+ }
7496
+
7497
+ .settings-tab-main {
7498
+ font-size: 0.875rem;
7499
+ font-weight: 700;
7500
+ color: inherit;
7501
+ line-height: 1.3;
7502
+ }
7503
+
7504
+ .settings-tab-meta {
7505
+ font-size: 0.75rem;
7506
+ font-weight: 500;
7507
+ color: var(--text-muted);
7508
+ line-height: 1.45;
7509
+ }
7510
+
7511
+ .settings-tab.active .settings-tab-meta {
7512
+ color: var(--text-secondary);
7513
+ }
7514
+
7515
+ .settings-content {
7516
+ min-width: 0;
7517
+ min-height: 0;
7518
+ height: 100%;
7519
+ overflow: auto;
7520
+ padding-right: 4px;
7363
7521
  }
7364
7522
 
7365
7523
  .settings-panel {
7366
7524
  display: none;
7525
+ min-height: 100%;
7526
+ padding: 2px 2px 8px;
7527
+ }
7528
+
7529
+ .settings-content::-webkit-scrollbar {
7530
+ width: 8px;
7531
+ }
7532
+
7533
+ .settings-content::-webkit-scrollbar-thumb {
7534
+ background: rgba(150, 118, 85, 0.24);
7535
+ border-radius: 999px;
7536
+ }
7537
+
7538
+ .settings-content::-webkit-scrollbar-thumb:hover {
7539
+ background: rgba(150, 118, 85, 0.38);
7540
+ }
7541
+
7542
+ .settings-content {
7543
+ scrollbar-width: thin;
7367
7544
  }
7368
7545
 
7369
7546
  .settings-panel.active {
7370
7547
  display: block;
7548
+ animation: fade-in 0.18s ease;
7549
+ }
7550
+
7551
+ .settings-panel-header {
7552
+ display: flex;
7553
+ flex-direction: column;
7554
+ gap: 6px;
7555
+ margin: 0 0 14px;
7556
+ padding-bottom: 12px;
7557
+ border-bottom: 1px solid rgba(125, 91, 57, 0.12);
7558
+ }
7559
+
7560
+ .settings-panel-title {
7561
+ font-size: 1.0625rem;
7562
+ font-weight: 700;
7563
+ color: var(--text-primary);
7564
+ line-height: 1.2;
7565
+ letter-spacing: -0.01em;
7566
+ }
7567
+
7568
+ .settings-panel-desc {
7569
+ font-size: 0.8125rem;
7570
+ color: var(--text-secondary);
7571
+ line-height: 1.55;
7572
+ }
7573
+
7574
+ .settings-panel-intro {
7575
+ margin: 0 0 14px;
7576
+ padding: 11px 13px;
7577
+ border-radius: var(--radius-md);
7578
+ background: linear-gradient(135deg, rgba(197, 101, 61, 0.08), rgba(197, 101, 61, 0.03));
7579
+ border: 1px solid rgba(197, 101, 61, 0.12);
7580
+ color: var(--text-secondary);
7581
+ font-size: 0.75rem;
7582
+ line-height: 1.6;
7583
+ }
7584
+
7585
+ .settings-panel > .settings-section-title {
7586
+ margin-top: 18px;
7587
+ }
7588
+
7589
+ .settings-panel > .settings-section-title:first-of-type {
7590
+ margin-top: 0;
7591
+ }
7592
+
7593
+ .settings-panel > .field-row,
7594
+ .settings-panel > .field,
7595
+ .settings-panel > .field-hint {
7596
+ max-width: 760px;
7597
+ }
7598
+
7599
+ .settings-panel > .switch-card-list,
7600
+ .settings-panel > .settings-card,
7601
+ .settings-panel > .settings-update-section,
7602
+ .settings-panel > .settings-notification-section,
7603
+ .settings-panel > #presets-list {
7604
+ max-width: 860px;
7605
+ }
7606
+
7607
+ .settings-panel > .settings-card + .settings-card,
7608
+ .settings-panel > .settings-update-section + .settings-update-section,
7609
+ .settings-panel > .settings-notification-section + .settings-notification-section {
7610
+ margin-top: 14px;
7611
+ }
7612
+
7613
+ .settings-panel[hidden] {
7614
+ display: none !important;
7615
+ }
7616
+
7617
+ .settings-panel-mixed-grid {
7618
+ display: grid;
7619
+ grid-template-columns: minmax(0, 1fr);
7620
+ gap: 14px;
7621
+ }
7622
+
7623
+ @media (min-width: 960px) {
7624
+ .settings-panel-mixed-grid.two-column {
7625
+ grid-template-columns: repeat(2, minmax(0, 1fr));
7626
+ }
7627
+ }
7628
+
7629
+ @media (max-width: 900px) {
7630
+ .settings-layout {
7631
+ grid-template-columns: 220px minmax(0, 1fr);
7632
+ gap: 18px;
7633
+ }
7634
+ }
7635
+
7636
+ @media (max-width: 768px) {
7637
+ .settings-modal {
7638
+ width: min(100%, 720px);
7639
+ height: min(92vh, 920px);
7640
+ max-height: min(92vh, 920px);
7641
+ min-height: min(92vh, 920px);
7642
+ }
7643
+
7644
+ .settings-layout {
7645
+ grid-template-columns: minmax(0, 1fr);
7646
+ gap: 14px;
7647
+ }
7648
+
7649
+ .settings-sidebar {
7650
+ padding-right: 0;
7651
+ border-right: none;
7652
+ }
7653
+
7654
+ .settings-tabs {
7655
+ flex-direction: row;
7656
+ flex-wrap: nowrap;
7657
+ overflow-x: auto;
7658
+ scrollbar-width: none;
7659
+ padding-right: 0;
7660
+ padding-bottom: 4px;
7661
+ }
7662
+
7663
+ .settings-tabs::-webkit-scrollbar {
7664
+ display: none;
7665
+ }
7666
+
7667
+ .settings-tab {
7668
+ flex: 0 0 200px;
7669
+ min-height: 72px;
7670
+ }
7671
+
7672
+ .settings-tab:hover {
7673
+ transform: none;
7674
+ }
7675
+
7676
+ .settings-content {
7677
+ overflow: visible;
7678
+ padding-right: 0;
7679
+ }
7680
+ }
7681
+
7682
+ @media (max-width: 480px) {
7683
+ .settings-tab {
7684
+ flex-basis: 180px;
7685
+ padding: 10px 12px 10px 14px;
7686
+ }
7687
+
7688
+ .settings-tab-main {
7689
+ font-size: 0.8125rem;
7690
+ }
7691
+
7692
+ .settings-tab-meta {
7693
+ font-size: 0.6875rem;
7694
+ }
7695
+ }
7696
+
7697
+ @supports not (position: sticky) {
7698
+ .settings-tabs,
7699
+ .settings-actions-sticky {
7700
+ position: static;
7701
+ }
7702
+ }
7703
+
7704
+ .settings-panel-intro {
7705
+ margin: 0 0 14px;
7706
+ padding: 11px 13px;
7707
+ border-radius: var(--radius-md);
7708
+ background: linear-gradient(135deg, rgba(197, 101, 61, 0.08), rgba(197, 101, 61, 0.03));
7709
+ border: 1px solid rgba(197, 101, 61, 0.12);
7710
+ color: var(--text-secondary);
7711
+ font-size: 0.75rem;
7712
+ line-height: 1.6;
7371
7713
  }
7372
7714
 
7373
7715
  .settings-about-info {
@@ -7375,17 +7717,20 @@
7375
7717
  flex-direction: column;
7376
7718
  gap: 0;
7377
7719
  margin-bottom: 18px;
7378
- background: var(--bg-secondary);
7379
- border-radius: var(--radius-md);
7380
- padding: 2px 14px;
7720
+ background: rgba(255, 255, 255, 0.5);
7721
+ border: 1px solid var(--border-subtle);
7722
+ border-radius: var(--radius-lg);
7723
+ padding: 4px 16px;
7724
+ box-shadow: var(--shadow-xs);
7381
7725
  }
7382
7726
 
7383
7727
  .settings-about-row {
7384
7728
  display: flex;
7385
7729
  justify-content: space-between;
7386
7730
  align-items: center;
7731
+ gap: 14px;
7387
7732
  font-size: 0.8125rem;
7388
- padding: 9px 0;
7733
+ padding: 12px 0;
7389
7734
  border-bottom: 1px solid var(--border-subtle);
7390
7735
  }
7391
7736
 
@@ -7395,13 +7740,17 @@
7395
7740
 
7396
7741
  .settings-label {
7397
7742
  color: var(--text-secondary);
7398
- font-weight: 500;
7743
+ font-weight: 600;
7744
+ flex: 0 0 112px;
7399
7745
  }
7400
7746
 
7401
7747
  .settings-value {
7402
7748
  color: var(--text-primary);
7403
7749
  font-family: var(--font-mono);
7404
7750
  font-size: 0.8rem;
7751
+ min-width: 0;
7752
+ text-align: right;
7753
+ word-break: break-word;
7405
7754
  }
7406
7755
 
7407
7756
  .settings-value a {
@@ -7413,38 +7762,64 @@
7413
7762
  text-decoration: underline;
7414
7763
  }
7415
7764
 
7416
- .settings-update-section {
7417
- border-top: 1px solid var(--border-subtle);
7418
- padding-top: 14px;
7765
+ .settings-update-section,
7766
+ .settings-notification-section,
7767
+ .settings-card,
7768
+ .switch-card,
7769
+ .preset-item {
7770
+ box-shadow: var(--shadow-xs);
7419
7771
  }
7420
7772
 
7773
+ .settings-update-section,
7421
7774
  .settings-notification-section {
7422
- border-top: 1px solid var(--border-subtle);
7423
- padding-top: 14px;
7424
- margin-top: 4px;
7775
+ margin-top: 14px;
7776
+ padding: 16px;
7777
+ border: 1px solid var(--border-subtle);
7778
+ border-radius: var(--radius-lg);
7779
+ background: rgba(255, 255, 255, 0.48);
7425
7780
  }
7781
+
7426
7782
  .settings-section-title {
7427
- font-size: 0.8125rem;
7428
- font-weight: 600;
7783
+ font-size: 0.875rem;
7784
+ font-weight: 700;
7429
7785
  color: var(--text-primary);
7430
7786
  margin: 0 0 12px 0;
7431
- letter-spacing: 0.02em;
7787
+ letter-spacing: 0.01em;
7432
7788
  }
7433
7789
 
7434
- .settings-update-actions {
7790
+ .settings-update-actions,
7791
+ .settings-actions {
7435
7792
  display: flex;
7436
- gap: 8px;
7793
+ gap: 10px;
7794
+ flex-wrap: wrap;
7795
+ margin-top: 12px;
7796
+ }
7797
+
7798
+ .settings-actions-sticky {
7799
+ position: sticky;
7800
+ bottom: 0;
7801
+ padding-top: 16px;
7802
+ background: linear-gradient(180deg, rgba(255, 251, 245, 0), rgba(255, 251, 245, 0.98) 28px);
7803
+ z-index: 1;
7804
+ }
7805
+
7806
+ .settings-status-message {
7437
7807
  margin-top: 10px;
7438
7808
  }
7439
7809
 
7810
+ .settings-inline-hint {
7811
+ margin-top: -4px;
7812
+ margin-bottom: 12px;
7813
+ }
7814
+
7440
7815
  .settings-connect-url-box {
7441
7816
  display: flex;
7442
7817
  align-items: center;
7443
- gap: 8px;
7444
- background: var(--bg-primary);
7818
+ gap: 10px;
7819
+ background: rgba(255, 255, 255, 0.72);
7445
7820
  border: 1px solid var(--border-subtle);
7446
- border-radius: 6px;
7447
- padding: 6px 10px;
7821
+ border-radius: 12px;
7822
+ padding: 10px 12px;
7448
7823
  margin-top: 6px;
7449
7824
  }
7450
7825
 
@@ -7475,6 +7850,10 @@
7475
7850
  align-items: center;
7476
7851
  gap: 10px;
7477
7852
  flex-direction: row;
7853
+ padding: 10px 12px;
7854
+ border-radius: 12px;
7855
+ background: rgba(255, 255, 255, 0.38);
7856
+ border: 1px solid rgba(125, 91, 57, 0.08);
7478
7857
  }
7479
7858
 
7480
7859
  .field-inline .field-label {
@@ -7483,8 +7862,8 @@
7483
7862
 
7484
7863
  .field-row {
7485
7864
  display: grid;
7486
- grid-template-columns: 1fr 1fr;
7487
- gap: 12px;
7865
+ grid-template-columns: repeat(2, minmax(0, 1fr));
7866
+ gap: 14px;
7488
7867
  margin-bottom: 14px;
7489
7868
  }
7490
7869
  .field-row .field {
@@ -7492,9 +7871,10 @@
7492
7871
  }
7493
7872
 
7494
7873
  .settings-card {
7495
- background: var(--bg-secondary);
7496
- border-radius: var(--radius-md);
7497
- padding: 16px;
7874
+ background: rgba(255, 255, 255, 0.52);
7875
+ border: 1px solid var(--border-subtle);
7876
+ border-radius: var(--radius-lg);
7877
+ padding: 18px;
7498
7878
  margin-bottom: 14px;
7499
7879
  }
7500
7880
  .settings-card .field:last-of-type {
@@ -7504,12 +7884,151 @@
7504
7884
  margin-top: 0;
7505
7885
  }
7506
7886
  .settings-card .field-input {
7507
- background: rgba(255, 255, 255, 0.6);
7887
+ background: rgba(255, 255, 255, 0.72);
7508
7888
  }
7509
7889
  .settings-card .btn-block {
7510
7890
  margin-bottom: 0;
7511
7891
  }
7512
7892
 
7893
+ .settings-panel .btn-block {
7894
+ min-height: 44px;
7895
+ }
7896
+
7897
+ .settings-panel .hint,
7898
+ .settings-panel .field-hint {
7899
+ line-height: 1.55;
7900
+ }
7901
+
7902
+ .settings-panel input[type="range"] {
7903
+ width: 100%;
7904
+ }
7905
+
7906
+ .settings-panel code {
7907
+ max-width: 100%;
7908
+ }
7909
+
7910
+ .settings-panel .hidden + .hint {
7911
+ margin-top: 0;
7912
+ }
7913
+
7914
+ .settings-panel .field:not(.field-inline) {
7915
+ margin-bottom: 16px;
7916
+ }
7917
+
7918
+ .settings-panel .field-input,
7919
+ .settings-panel .field-select,
7920
+ .settings-panel .field-file {
7921
+ width: 100%;
7922
+ }
7923
+
7924
+ .settings-panel .btn-sm {
7925
+ min-height: 34px;
7926
+ }
7927
+
7928
+ .settings-panel .app-icon-option {
7929
+ flex: 1 1 0;
7930
+ min-width: 0;
7931
+ }
7932
+
7933
+ .settings-panel .app-icon-preview {
7934
+ margin-left: auto;
7935
+ margin-right: auto;
7936
+ }
7937
+
7938
+ .settings-panel .error-message,
7939
+ .settings-panel .hint.hidden,
7940
+ .settings-panel .error-message.hidden {
7941
+ margin-top: 10px;
7942
+ }
7943
+
7944
+ .settings-panel #presets-list:empty::before {
7945
+ content: "加载中...";
7946
+ display: block;
7947
+ padding: 18px;
7948
+ color: var(--text-muted);
7949
+ text-align: center;
7950
+ font-size: 0.8125rem;
7951
+ }
7952
+
7953
+ @media (max-width: 768px) {
7954
+ .settings-about-row {
7955
+ align-items: flex-start;
7956
+ }
7957
+
7958
+ .settings-update-actions,
7959
+ .settings-actions {
7960
+ flex-direction: column;
7961
+ }
7962
+
7963
+ .settings-update-actions .btn,
7964
+ .settings-actions .btn {
7965
+ width: 100%;
7966
+ }
7967
+
7968
+ .settings-connect-url-box {
7969
+ flex-direction: column;
7970
+ align-items: stretch;
7971
+ }
7972
+ }
7973
+
7974
+ @media (max-width: 640px) {
7975
+ .settings-modal-header {
7976
+ gap: 10px;
7977
+ }
7978
+
7979
+ .settings-modal-subtitle {
7980
+ font-size: 0.6875rem;
7981
+ }
7982
+
7983
+ .settings-panel {
7984
+ padding-left: 0;
7985
+ padding-right: 0;
7986
+ }
7987
+
7988
+ .settings-about-info,
7989
+ .settings-update-section,
7990
+ .settings-notification-section,
7991
+ .settings-card {
7992
+ padding-left: 14px;
7993
+ padding-right: 14px;
7994
+ }
7995
+
7996
+ .settings-about-row {
7997
+ flex-direction: column;
7998
+ align-items: stretch;
7999
+ gap: 4px;
8000
+ }
8001
+
8002
+ .settings-label,
8003
+ .settings-value {
8004
+ flex: none;
8005
+ text-align: left;
8006
+ }
8007
+
8008
+ .field-inline {
8009
+ align-items: flex-start;
8010
+ }
8011
+
8012
+ .settings-panel .btn-icon {
8013
+ min-width: 34px;
8014
+ min-height: 34px;
8015
+ }
8016
+ }
8017
+
8018
+ @media (min-width: 769px) {
8019
+ .settings-panel .btn-block {
8020
+ width: auto;
8021
+ min-width: 180px;
8022
+ }
8023
+ }
8024
+
8025
+ @supports not (position: sticky) {
8026
+ .settings-tabs,
8027
+ .settings-actions-sticky {
8028
+ position: static;
8029
+ }
8030
+ }
8031
+
7513
8032
  .empty-state-compact {
7514
8033
  display: flex;
7515
8034
  flex-direction: column;
@@ -7535,20 +8054,21 @@
7535
8054
  .switch-card-list {
7536
8055
  display: flex;
7537
8056
  flex-direction: column;
7538
- gap: 8px;
8057
+ gap: 10px;
7539
8058
  }
7540
8059
  .switch-card {
7541
8060
  display: block;
7542
- background: var(--bg-secondary);
8061
+ background: rgba(255, 255, 255, 0.5);
7543
8062
  border: 1px solid var(--border);
7544
- border-radius: 10px;
7545
- padding: 12px 14px;
8063
+ border-radius: 14px;
8064
+ padding: 14px 16px;
7546
8065
  cursor: pointer;
7547
- transition: border-color 0.2s, background 0.2s;
8066
+ transition: border-color 0.2s, background 0.2s, transform 0.2s;
7548
8067
  user-select: none;
7549
8068
  }
7550
8069
  .switch-card:hover {
7551
8070
  border-color: var(--text-muted);
8071
+ transform: translateY(-1px);
7552
8072
  }
7553
8073
  .switch-card-header {
7554
8074
  display: flex;
@@ -7627,22 +8147,38 @@
7627
8147
  display: flex;
7628
8148
  justify-content: space-between;
7629
8149
  align-items: center;
7630
- padding: 10px 12px;
7631
- background: var(--bg-secondary);
7632
- border-radius: 8px;
7633
- margin-bottom: 8px;
8150
+ gap: 12px;
8151
+ padding: 12px 14px;
8152
+ background: rgba(255, 255, 255, 0.52);
8153
+ border: 1px solid var(--border-subtle);
8154
+ border-radius: 12px;
8155
+ margin-bottom: 10px;
7634
8156
  font-size: 0.8125rem;
7635
8157
  }
7636
8158
 
7637
8159
  .preset-label {
7638
- font-weight: 500;
8160
+ font-weight: 600;
7639
8161
  color: var(--text-primary);
7640
8162
  }
7641
8163
 
7642
8164
  .preset-detail {
8165
+ min-width: 0;
8166
+ text-align: right;
7643
8167
  color: var(--text-secondary);
7644
8168
  font-family: var(--font-mono);
7645
8169
  font-size: 0.75rem;
8170
+ word-break: break-word;
8171
+ }
8172
+
8173
+ @media (max-width: 640px) {
8174
+ .preset-item {
8175
+ flex-direction: column;
8176
+ align-items: flex-start;
8177
+ }
8178
+
8179
+ .preset-detail {
8180
+ text-align: left;
8181
+ }
7646
8182
  }
7647
8183
 
7648
8184
  .file-preview-modal {