@akropolys/kiku 1.6.2 → 1.6.3

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.
package/dist/styles.css CHANGED
@@ -4615,4 +4615,178 @@
4615
4615
  gap: 4px;
4616
4616
  }
4617
4617
  }
4618
+ .hsk-kiku-picker {
4619
+ position: absolute;
4620
+ bottom: calc(100% + 8px);
4621
+ left: 0;
4622
+ right: 0;
4623
+ background: var(--hsk-surface, #1c1c1e);
4624
+ border: 1px solid var(--hsk-border, rgba(255,255,255,0.10));
4625
+ border-radius: 14px;
4626
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36), 0 2px 8px rgba(0, 0, 0, 0.18);
4627
+ overflow: hidden;
4628
+ z-index: 120;
4629
+ animation: hsk-picker-in 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
4630
+ }
4631
+ @keyframes hsk-picker-in {
4632
+ from {
4633
+ opacity: 0;
4634
+ transform: translateY(6px) scale(0.98);
4635
+ }
4636
+ to {
4637
+ opacity: 1;
4638
+ transform: translateY(0) scale(1);
4639
+ }
4640
+ }
4641
+ .hsk-kiku-picker-header {
4642
+ display: flex;
4643
+ align-items: center;
4644
+ gap: 8px;
4645
+ padding: 10px 14px 8px;
4646
+ border-bottom: 1px solid var(--hsk-border, rgba(255,255,255,0.08));
4647
+ }
4648
+ .hsk-kiku-picker-at {
4649
+ font-size: 12px;
4650
+ font-weight: 700;
4651
+ letter-spacing: 0.02em;
4652
+ color: var(--hsk-primary, #7c5cfc);
4653
+ background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 14%, transparent);
4654
+ padding: 2px 7px;
4655
+ border-radius: 20px;
4656
+ flex-shrink: 0;
4657
+ }
4658
+ .hsk-kiku-picker-hint {
4659
+ font-size: 12px;
4660
+ color: var(--hsk-text-muted, #888);
4661
+ flex: 1;
4662
+ }
4663
+ .hsk-kiku-picker-close {
4664
+ background: none;
4665
+ border: none;
4666
+ cursor: pointer;
4667
+ color: var(--hsk-text-muted, #888);
4668
+ display: flex;
4669
+ align-items: center;
4670
+ justify-content: center;
4671
+ width: 22px;
4672
+ height: 22px;
4673
+ border-radius: 50%;
4674
+ transition: background 0.15s;
4675
+ padding: 0;
4676
+ }
4677
+ .hsk-kiku-picker-close:hover {
4678
+ background: rgba(255, 255, 255, 0.08);
4679
+ }
4680
+ .hsk-kiku-picker-section {
4681
+ font-size: 10px;
4682
+ font-weight: 600;
4683
+ letter-spacing: 0.06em;
4684
+ text-transform: uppercase;
4685
+ color: var(--hsk-text-muted, #666);
4686
+ padding: 8px 14px 4px;
4687
+ }
4688
+ .hsk-kiku-picker-divider {
4689
+ height: 1px;
4690
+ background: var(--hsk-border, rgba(255,255,255,0.07));
4691
+ margin: 4px 0;
4692
+ }
4693
+ .hsk-kiku-picker-item {
4694
+ display: flex;
4695
+ align-items: center;
4696
+ gap: 10px;
4697
+ width: 100%;
4698
+ text-align: left;
4699
+ background: none;
4700
+ border: none;
4701
+ cursor: pointer;
4702
+ padding: 9px 14px;
4703
+ transition: background 0.12s;
4704
+ color: var(--hsk-text, #f0f0f0);
4705
+ }
4706
+ .hsk-kiku-picker-item:hover {
4707
+ background: rgba(255, 255, 255, 0.06);
4708
+ }
4709
+ .hsk-kiku-picker-item:active {
4710
+ background: rgba(255, 255, 255, 0.10);
4711
+ }
4712
+ .hsk-kiku-picker-item--all {
4713
+ border-top: 1px solid var(--hsk-border, rgba(255,255,255,0.07));
4714
+ margin-top: 2px;
4715
+ }
4716
+ .hsk-kiku-picker-img {
4717
+ width: 36px;
4718
+ height: 36px;
4719
+ border-radius: 8px;
4720
+ object-fit: cover;
4721
+ flex-shrink: 0;
4722
+ background: rgba(255, 255, 255, 0.05);
4723
+ }
4724
+ .hsk-kiku-picker-img-placeholder {
4725
+ width: 36px;
4726
+ height: 36px;
4727
+ border-radius: 8px;
4728
+ background: rgba(255, 255, 255, 0.05);
4729
+ display: flex;
4730
+ align-items: center;
4731
+ justify-content: center;
4732
+ flex-shrink: 0;
4733
+ color: var(--hsk-text-muted, #666);
4734
+ }
4735
+ .hsk-kiku-picker-item-body {
4736
+ display: flex;
4737
+ flex-direction: column;
4738
+ gap: 2px;
4739
+ min-width: 0;
4740
+ }
4741
+ .hsk-kiku-picker-item-name {
4742
+ font-size: 13px;
4743
+ font-weight: 500;
4744
+ white-space: nowrap;
4745
+ overflow: hidden;
4746
+ text-overflow: ellipsis;
4747
+ color: var(--hsk-text, #f0f0f0);
4748
+ }
4749
+ .hsk-kiku-picker-item-price {
4750
+ font-size: 11px;
4751
+ color: var(--hsk-text-muted, #888);
4752
+ }
4753
+ .hsk-kiku-badge {
4754
+ display: inline-flex;
4755
+ align-items: center;
4756
+ font-size: 10px;
4757
+ font-weight: 700;
4758
+ letter-spacing: 0.04em;
4759
+ color: var(--hsk-primary, #7c5cfc);
4760
+ background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 16%, transparent);
4761
+ border: 1px solid color-mix(in srgb, var(--hsk-primary, #7c5cfc) 30%, transparent);
4762
+ padding: 1px 7px;
4763
+ border-radius: 20px;
4764
+ margin-right: 6px;
4765
+ vertical-align: middle;
4766
+ position: relative;
4767
+ top: -1px;
4768
+ }
4769
+ .hsk-light .hsk-kiku-picker {
4770
+ background: #ffffff;
4771
+ border-color: rgba(0, 0, 0, 0.10);
4772
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
4773
+ }
4774
+ .hsk-light .hsk-kiku-picker-item {
4775
+ color: #1a1a1a;
4776
+ }
4777
+ .hsk-light .hsk-kiku-picker-item:hover {
4778
+ background: rgba(0, 0, 0, 0.04);
4779
+ }
4780
+ .hsk-light .hsk-kiku-picker-item:active {
4781
+ background: rgba(0, 0, 0, 0.08);
4782
+ }
4783
+ .hsk-light .hsk-kiku-picker-item-name {
4784
+ color: #1a1a1a;
4785
+ }
4786
+ .hsk-light .hsk-kiku-picker-close:hover {
4787
+ background: rgba(0, 0, 0, 0.06);
4788
+ }
4789
+ .hsk-light .hsk-kiku-picker-img-placeholder {
4790
+ background: rgba(0, 0, 0, 0.04);
4791
+ }
4618
4792
  /*# sourceMappingURL=styles.css.map */