@salesmind-ai/design-system 0.1.7 → 0.1.9

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.
@@ -1287,7 +1287,7 @@
1287
1287
  animation: ds-scroll var(--marquee-duration, 40s) linear infinite;
1288
1288
  transform: translateZ(0);
1289
1289
  }
1290
- .ds-social-logos__track:hover {
1290
+ .ds-social-logos__marquee:hover .ds-social-logos__track {
1291
1291
  animation-play-state: paused;
1292
1292
  }
1293
1293
  @keyframes ds-scroll {
@@ -3701,6 +3701,31 @@
3701
3701
  aspect-ratio: 16/9;
3702
3702
  }
3703
3703
  }
3704
+ .ds-article-card--no-image .ds-article-card__placeholder {
3705
+ position: relative;
3706
+ width: 100%;
3707
+ aspect-ratio: 16/9;
3708
+ overflow: hidden;
3709
+ background:
3710
+ linear-gradient(
3711
+ 135deg,
3712
+ var(--hc-surface-subtle) 0%,
3713
+ var(--hc-surface) 50%,
3714
+ rgba(var(--accent-rgb), 0.08) 100%);
3715
+ display: flex;
3716
+ align-items: center;
3717
+ justify-content: center;
3718
+ }
3719
+ .ds-article-card__placeholder-icon {
3720
+ width: 48px;
3721
+ height: 48px;
3722
+ opacity: 0.15;
3723
+ color: var(--text-tertiary);
3724
+ transition: opacity var(--transition-base);
3725
+ }
3726
+ .ds-article-card:hover .ds-article-card__placeholder-icon {
3727
+ opacity: 0.25;
3728
+ }
3704
3729
 
3705
3730
  /* src/components/ArticleLayout/ArticleLayout.css */
3706
3731
  .ds-article-layout {