@gem-sdk/styles 2.0.0-dev.895 → 2.0.0-staging.1059

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.
@@ -222,7 +222,8 @@
222
222
  background-color: #d8e1ff !important;
223
223
  }
224
224
 
225
- &[is-drag-to-theme-section='true'], &[is-drag-to-shopify-section='true'] {
225
+ &[is-drag-to-theme-section='true'],
226
+ &[is-drag-to-shopify-section='true'] {
226
227
  background-color: rgba(254, 228, 227, 0.24) !important;
227
228
  display: block;
228
229
 
@@ -261,11 +262,6 @@
261
262
  }
262
263
  }
263
264
 
264
- &[is-drag-to-exceeded-section='true'] {
265
- background-color: rgba(244,67,54, 0.08) !important;
266
- border: 1px solid rgba(244,67,54) !important;
267
- display: block;
268
- }
269
265
  &[is-component-dragging='true'] {
270
266
  background-color: #8aa4ff66 !important;
271
267
  }
@@ -418,15 +414,16 @@
418
414
 
419
415
  .post-purchase-page {
420
416
  font-size: 14px;
421
- font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
417
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
418
+ 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
422
419
  line-height: 15px;
420
+
423
421
  select:focus {
424
422
  border-color: #1879b9;
425
423
  box-shadow: 0 0 0 1px #1879b9;
426
424
  }
427
425
  }
428
426
 
429
-
430
427
  /* .button-text.ck p {
431
428
  overflow: hidden;
432
429
  text-overflow: ellipsis;
@@ -436,6 +433,9 @@
436
433
  .gp-text.ck p {
437
434
  word-break: break-word;
438
435
  }
436
+ .gp-text strong {
437
+ font-weight: bold;
438
+ }
439
439
 
440
440
  .button-text:hover::after {
441
441
  content: '';
@@ -481,4 +481,119 @@
481
481
 
482
482
  .editor-content {
483
483
  font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
484
- }
484
+ }
485
+
486
+ .rfm-marquee-container {
487
+ display: flex;
488
+ flex-direction: row;
489
+ position: relative;
490
+ width: var(--width);
491
+ transform: var(--transform);
492
+ max-width: unset !important;
493
+ }
494
+
495
+ .rfm-marquee-container:hover div {
496
+ animation-play-state: var(--pause-on-hover);
497
+ }
498
+
499
+ .rfm-marquee-container:active div {
500
+ animation-play-state: var(--pause-on-click);
501
+ }
502
+
503
+ .rfm-overlay {
504
+ position: absolute;
505
+ width: 100%;
506
+ height: 100%;
507
+ }
508
+
509
+ .rfm-overlay::after {
510
+ right: 0;
511
+ top: 0;
512
+ transform: rotateZ(180deg);
513
+ }
514
+
515
+ .rfm-overlay::before {
516
+ left: 0;
517
+ top: 0;
518
+ }
519
+
520
+ .rfm-marquee {
521
+ flex: 0 0 auto;
522
+ min-width: var(--min-width);
523
+ z-index: 1;
524
+ max-width: unset !important;
525
+ display: flex;
526
+ flex-direction: row;
527
+ align-items: center;
528
+ animation: gp-marquee-scroll var(--duration) linear var(--delay) var(--iteration-count);
529
+ animation-play-state: var(--play);
530
+ animation-delay: var(--delay);
531
+ animation-direction: var(--direction);
532
+ }
533
+
534
+ @keyframes gp-marquee-scroll {
535
+ 0% {
536
+ transform: translateX(0%);
537
+ }
538
+
539
+ 100% {
540
+ transform: translateX(-100%);
541
+ }
542
+ }
543
+
544
+ .rfm-initial-child-container {
545
+ flex: 0 0 auto;
546
+ display: flex;
547
+ min-width: auto;
548
+ flex-direction: row;
549
+ align-items: center;
550
+ }
551
+
552
+ .rfm-child {
553
+ transform: var(--transform);
554
+ }
555
+
556
+ .product-badge.inside-image {
557
+ [data-outline] {
558
+ visibility: visible;
559
+ }
560
+ }
561
+
562
+ .interaction-select-mode-header {
563
+ font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
564
+ }
565
+
566
+ [display-init='hide'] {
567
+ visibility: hidden !important;
568
+ max-height: 0 !important;
569
+ overflow: hidden !important;
570
+ display: inline !important;
571
+ }
572
+
573
+ [display-init='hide'] * {
574
+ max-height: 0 !important;
575
+ }
576
+
577
+ .interaction-select-mode [data-component-tag] * {
578
+ cursor: default !important;
579
+
580
+ & [data-toolbar] * {
581
+ cursor: pointer !important;
582
+ }
583
+ }
584
+
585
+ .interaction-select-mode {
586
+ [data-component-tag='ProductQuantity'] {
587
+ button[aria-label='increment'],
588
+ button[aria-label='decrement'],
589
+ input {
590
+ pointer-events: none;
591
+ }
592
+ }
593
+
594
+ [data-component-tag='ProductVariants'] {
595
+ span.gp-underline {
596
+ pointer-events: none;
597
+ }
598
+ }
599
+ }