@carbon/ibm-products 1.55.2 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. package/css/index-full-carbon.css +579 -0
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +1 -1
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon.css +579 -0
  6. package/css/index-without-carbon.css.map +1 -1
  7. package/css/index-without-carbon.min.css +1 -1
  8. package/css/index-without-carbon.min.css.map +1 -1
  9. package/css/index.css +579 -0
  10. package/css/index.css.map +1 -1
  11. package/css/index.min.css +1 -1
  12. package/css/index.min.css.map +1 -1
  13. package/es/components/Carousel/Carousel.js +15 -5
  14. package/es/components/Coachmark/Coachmark.js +243 -0
  15. package/es/components/Coachmark/CoachmarkDragbar.js +137 -0
  16. package/es/components/Coachmark/CoachmarkHeader.js +88 -0
  17. package/es/components/Coachmark/CoachmarkOverlay.js +139 -0
  18. package/es/components/Coachmark/CoachmarkTagline.js +93 -0
  19. package/es/components/Coachmark/index.js +10 -0
  20. package/es/components/Coachmark/utils/constants.js +76 -0
  21. package/es/components/Coachmark/utils/context.js +5 -0
  22. package/es/components/Coachmark/utils/enums.js +40 -0
  23. package/es/components/Coachmark/utils/helpers.js +11 -0
  24. package/es/components/Coachmark/utils/hooks.js +54 -0
  25. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +90 -0
  26. package/es/components/CoachmarkBeacon/index.js +8 -0
  27. package/es/components/CoachmarkButton/CoachmarkButton.js +72 -0
  28. package/es/components/CoachmarkButton/index.js +8 -0
  29. package/es/components/CoachmarkFixed/CoachmarkFixed.js +201 -0
  30. package/es/components/CoachmarkFixed/index.js +8 -0
  31. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +86 -0
  32. package/es/components/CoachmarkOverlayElement/index.js +8 -0
  33. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +175 -0
  34. package/es/components/CoachmarkOverlayElements/index.js +8 -0
  35. package/es/components/CoachmarkStack/CoachmarkStack.js +260 -0
  36. package/es/components/CoachmarkStack/CoachmarkStackHome.js +157 -0
  37. package/es/components/CoachmarkStack/index.js +8 -0
  38. package/es/components/NotificationsPanel/NotificationsPanel.js +3 -2
  39. package/es/components/index.js +7 -0
  40. package/es/global/js/package-settings.js +8 -1
  41. package/lib/components/Carousel/Carousel.js +15 -5
  42. package/lib/components/Coachmark/Coachmark.js +247 -0
  43. package/lib/components/Coachmark/CoachmarkDragbar.js +137 -0
  44. package/lib/components/Coachmark/CoachmarkHeader.js +85 -0
  45. package/lib/components/Coachmark/CoachmarkOverlay.js +139 -0
  46. package/lib/components/Coachmark/CoachmarkTagline.js +90 -0
  47. package/lib/components/Coachmark/index.js +38 -0
  48. package/lib/components/Coachmark/utils/constants.js +82 -0
  49. package/lib/components/Coachmark/utils/context.js +13 -0
  50. package/lib/components/Coachmark/utils/enums.js +49 -0
  51. package/lib/components/Coachmark/utils/helpers.js +17 -0
  52. package/lib/components/Coachmark/utils/hooks.js +60 -0
  53. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +87 -0
  54. package/lib/components/CoachmarkBeacon/index.js +12 -0
  55. package/lib/components/CoachmarkButton/CoachmarkButton.js +69 -0
  56. package/lib/components/CoachmarkButton/index.js +12 -0
  57. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +201 -0
  58. package/lib/components/CoachmarkFixed/index.js +12 -0
  59. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +83 -0
  60. package/lib/components/CoachmarkOverlayElement/index.js +12 -0
  61. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +176 -0
  62. package/lib/components/CoachmarkOverlayElements/index.js +12 -0
  63. package/lib/components/CoachmarkStack/CoachmarkStack.js +264 -0
  64. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +160 -0
  65. package/lib/components/CoachmarkStack/index.js +12 -0
  66. package/lib/components/NotificationsPanel/NotificationsPanel.js +3 -2
  67. package/lib/components/index.js +49 -0
  68. package/lib/global/js/package-settings.js +8 -1
  69. package/package.json +2 -2
  70. package/scss/components/Carousel/_carousel.scss +3 -0
  71. package/scss/components/Coachmark/_index.scss +11 -0
  72. package/scss/components/Coachmark/_storybook-styles.scss +20 -0
  73. package/scss/components/Coachmark/styles/_coachmark-dragbar.scss +74 -0
  74. package/scss/components/Coachmark/styles/_coachmark-header.scss +58 -0
  75. package/scss/components/Coachmark/styles/_coachmark-overlay.scss +327 -0
  76. package/scss/components/Coachmark/styles/_coachmark-tagline.scss +118 -0
  77. package/scss/components/CoachmarkBeacon/_coachmark-beacon.scss +166 -0
  78. package/scss/components/CoachmarkBeacon/_index.scss +8 -0
  79. package/scss/components/CoachmarkBeacon/_storybook-styles.scss +19 -0
  80. package/scss/components/CoachmarkButton/_coachmark-button.scss +34 -0
  81. package/scss/components/CoachmarkButton/_index.scss +8 -0
  82. package/scss/components/CoachmarkButton/_storybook-styles.scss +19 -0
  83. package/scss/components/CoachmarkFixed/_coachmark-fixed.scss +34 -0
  84. package/scss/components/CoachmarkFixed/_index.scss +8 -0
  85. package/scss/components/CoachmarkFixed/_storybook-styles.scss +10 -0
  86. package/scss/components/CoachmarkOverlayElement/_coachmark-overlay-element.scss +50 -0
  87. package/scss/components/CoachmarkOverlayElement/_index.scss +8 -0
  88. package/scss/components/CoachmarkOverlayElement/_storybook-styles.scss +19 -0
  89. package/scss/components/CoachmarkOverlayElements/_coachmark-overlay-elements.scss +40 -0
  90. package/scss/components/CoachmarkOverlayElements/_index.scss +8 -0
  91. package/scss/components/CoachmarkOverlayElements/_storybook-styles.scss +19 -0
  92. package/scss/components/CoachmarkStack/_coachmark-stack.scss +85 -0
  93. package/scss/components/CoachmarkStack/_index.scss +8 -0
  94. package/scss/components/CoachmarkStack/_storybook-styles.scss +10 -0
  95. package/scss/components/_index.scss +7 -1
@@ -23194,6 +23194,11 @@ th.c4p--datagrid__select-all-toggle-on.button {
23194
23194
  .c4p--carousel__elements::-webkit-scrollbar {
23195
23195
  display: none;
23196
23196
  }
23197
+ @media (prefers-reduced-motion) {
23198
+ .c4p--carousel__elements {
23199
+ scroll-behavior: auto;
23200
+ }
23201
+ }
23197
23202
 
23198
23203
  /**
23199
23204
  * The Guidebanner specifically is theme-agnostic, and so we have to
@@ -25597,6 +25602,580 @@ th.c4p--datagrid__select-all-toggle-on.button {
25597
25602
  color: var(--cds-link-01, #0f62fe);
25598
25603
  }
25599
25604
 
25605
+ /* stylelint-disable declaration-no-important */
25606
+ .c4p--coachmark-dragbar {
25607
+ display: flex;
25608
+ }
25609
+ .c4p--coachmark-dragbar__handle {
25610
+ flex-grow: 1;
25611
+ padding: var(--cds-spacing-03, 0.5rem) 0 0 var(--cds-spacing-03, 0.5rem);
25612
+ border: 0;
25613
+ background-color: transparent;
25614
+ text-align: left;
25615
+ }
25616
+ .c4p--coachmark-dragbar__handle:hover {
25617
+ cursor: move;
25618
+ }
25619
+ .c4p--coachmark-dragbar--close-btn {
25620
+ width: var(--cds-spacing-07, 2rem);
25621
+ height: var(--cds-spacing-07, 2rem);
25622
+ margin-left: auto !important;
25623
+ }
25624
+ .c4p--coachmark-dragbar--close-btn svg > path {
25625
+ margin: 0;
25626
+ fill: var(--cds-inverse-01, #ffffff) !important;
25627
+ }
25628
+ .c4p--coachmark-dragbar--close-btn:hover {
25629
+ background-color: var(--cds-inverse-hover-ui, #4c4c4c) !important;
25630
+ }
25631
+ .c4p--coachmark-dragbar__light c4p--coachmark-dragbar--close-btn:active {
25632
+ background-color: var(--cds-active-secondary, #6f6f6f);
25633
+ }
25634
+ .c4p--coachmark-dragbar__dark c4p--coachmark-dragbar--close-btn:active {
25635
+ background-color: var(--cds-button-tertiary-active, #002d9c);
25636
+ }
25637
+ .c4p--coachmark-dragbar svg {
25638
+ color: var(--cds-inverse-01, #ffffff);
25639
+ }
25640
+
25641
+ /* stylelint-disable declaration-no-important */
25642
+ .c4p--coachmark-header {
25643
+ display: flex;
25644
+ }
25645
+ .c4p--coachmark-header--close-btn {
25646
+ width: var(--cds-spacing-07, 2rem);
25647
+ height: var(--cds-spacing-07, 2rem);
25648
+ margin-left: auto !important;
25649
+ }
25650
+ .c4p--coachmark-header--close-btn svg > path {
25651
+ margin: 0;
25652
+ fill: var(--cds-inverse-01, #ffffff) !important;
25653
+ }
25654
+ .c4p--coachmark-header--close-btn:hover {
25655
+ background-color: var(--cds-inverse-hover-ui, #4c4c4c) !important;
25656
+ }
25657
+ .c4p--coachmark-header__light c4p--coachmark-header--close-btn:active {
25658
+ background-color: var(--cds-active-secondary, #6f6f6f);
25659
+ }
25660
+ .c4p--coachmark-header__dark c4p--coachmark-header--close-btn:active {
25661
+ background-color: var(--cds-button-tertiary-active, #002d9c);
25662
+ }
25663
+
25664
+ /* stylelint-disable carbon/layout-token-use */
25665
+ /* stylelint-disable carbon/theme-token-use */
25666
+ /* stylelint-disable declaration-no-important */
25667
+ .c4p--coachmark-overlay {
25668
+ position: absolute;
25669
+ z-index: 5901;
25670
+ width: 18rem;
25671
+ border-radius: var(--cds-spacing-01, 0.125rem);
25672
+ background-color: var(--cds-inverse-02, #393939);
25673
+ color: var(--cds-inverse-01, #ffffff);
25674
+ /* ------------------ */
25675
+ }
25676
+ .c4p--coachmark-overlay--fixed {
25677
+ position: fixed;
25678
+ right: var(--cds-spacing-05, 1rem);
25679
+ bottom: 0;
25680
+ transform: translateY(100%);
25681
+ /* stylelint-disable-next-line carbon/motion-easing-use, carbon/motion-duration-use */
25682
+ transition: 240ms cubic-bezier(0.2, 0, 1, 0.9);
25683
+ }
25684
+ @media (prefers-reduced-motion) {
25685
+ .c4p--coachmark-overlay--fixed {
25686
+ transition: none;
25687
+ }
25688
+ }
25689
+ .c4p--coachmark-overlay--is-visible {
25690
+ transform: translateY(0);
25691
+ }
25692
+ .c4p--coachmark-overlay__caret {
25693
+ position: absolute;
25694
+ z-index: 5902;
25695
+ width: 0;
25696
+ height: 0;
25697
+ border-right: calc(var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) solid transparent;
25698
+ border-bottom: solid calc(var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) var(--cds-inverse-02, #393939);
25699
+ border-left: calc(var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) solid transparent;
25700
+ }
25701
+ .c4p--coachmark-overlay--top {
25702
+ transform: translate(-50%, calc(-1 * (100% + var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem))));
25703
+ }
25704
+ .c4p--coachmark-overlay--top .c4p--coachmark-overlay__caret {
25705
+ left: calc(50% - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25706
+ transform: rotate(180deg);
25707
+ }
25708
+ .c4p--coachmark-overlay--top-left {
25709
+ transform: translate(calc(-1 * var(--cds-spacing-06, 1.5rem)), calc(-1 * (100% + var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem))));
25710
+ }
25711
+ .c4p--coachmark-overlay--top-left .c4p--coachmark-overlay__caret {
25712
+ left: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25713
+ transform: rotate(180deg);
25714
+ }
25715
+ .c4p--coachmark-overlay--top-right {
25716
+ transform: translate(calc(-1 * (100% - var(--cds-spacing-06, 1.5rem))), calc(-1 * (100% + var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem))));
25717
+ }
25718
+ .c4p--coachmark-overlay--top-right .c4p--coachmark-overlay__caret {
25719
+ right: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25720
+ transform: rotate(180deg);
25721
+ }
25722
+ .c4p--coachmark-overlay--bottom {
25723
+ transform: translate(-50%, calc(var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25724
+ }
25725
+ .c4p--coachmark-overlay--bottom .c4p--coachmark-overlay__caret {
25726
+ top: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25727
+ left: calc(50% - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25728
+ }
25729
+ .c4p--coachmark-overlay--bottom-left {
25730
+ transform: translate(calc(-1 * var(--cds-spacing-06, 1.5rem)), calc(var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25731
+ }
25732
+ .c4p--coachmark-overlay--bottom-left .c4p--coachmark-overlay__caret {
25733
+ top: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25734
+ left: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25735
+ }
25736
+ .c4p--coachmark-overlay--bottom-right {
25737
+ transform: translate(calc(-1 * (100% - var(--cds-spacing-06, 1.5rem))), calc(var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25738
+ }
25739
+ .c4p--coachmark-overlay--bottom-right .c4p--coachmark-overlay__caret {
25740
+ top: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25741
+ right: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)));
25742
+ }
25743
+ .c4p--coachmark-overlay--left {
25744
+ transform: translate(calc(-1 * (100% + var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem))), -50%);
25745
+ }
25746
+ .c4p--coachmark-overlay--left .c4p--coachmark-overlay__caret {
25747
+ top: calc(50% - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 0.5);
25748
+ right: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 1.5);
25749
+ transform: rotate(90deg);
25750
+ }
25751
+ .c4p--coachmark-overlay--left-top {
25752
+ transform: translate(calc(-1 * (100% + var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem))), calc(-1 * var(--cds-spacing-06, 1.5rem)));
25753
+ }
25754
+ .c4p--coachmark-overlay--left-top .c4p--coachmark-overlay__caret {
25755
+ top: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 0.5);
25756
+ right: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 1.5);
25757
+ transform: rotate(90deg);
25758
+ }
25759
+ .c4p--coachmark-overlay--left-bottom {
25760
+ transform: translate(calc(-1 * (100% + var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem))), calc(-1 * (100% - var(--cds-spacing-06, 1.5rem))));
25761
+ }
25762
+ .c4p--coachmark-overlay--left-bottom .c4p--coachmark-overlay__caret {
25763
+ right: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 1.5);
25764
+ bottom: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 0.5);
25765
+ transform: rotate(90deg);
25766
+ }
25767
+ .c4p--coachmark-overlay--right {
25768
+ transform: translate(calc(var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)), -50%);
25769
+ }
25770
+ .c4p--coachmark-overlay--right .c4p--coachmark-overlay__caret {
25771
+ top: calc(50% - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 0.5);
25772
+ left: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 1.5);
25773
+ transform: rotate(-90deg);
25774
+ }
25775
+ .c4p--coachmark-overlay--right-top {
25776
+ transform: translate(calc(var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)), calc(-1 * var(--cds-spacing-06, 1.5rem)));
25777
+ }
25778
+ .c4p--coachmark-overlay--right-top .c4p--coachmark-overlay__caret {
25779
+ top: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 0.5);
25780
+ left: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 1.5);
25781
+ transform: rotate(-90deg);
25782
+ }
25783
+ .c4p--coachmark-overlay--right-bottom {
25784
+ transform: translate(calc(var(--cds-spacing-06, 1.5rem) + var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)), calc(-1 * (100% - var(--cds-spacing-06, 1.5rem))));
25785
+ }
25786
+ .c4p--coachmark-overlay--right-bottom .c4p--coachmark-overlay__caret {
25787
+ bottom: calc(var(--cds-spacing-06, 1.5rem) - (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 0.5);
25788
+ left: calc(-1 * (var(--cds-spacing-03, 0.5rem) - var(--cds-spacing-01, 0.125rem)) * 1.5);
25789
+ transform: rotate(-90deg);
25790
+ }
25791
+ .c4p--coachmark-overlay__element-stepped-media {
25792
+ height: calc(var(--cds-spacing-07, 2rem) + var(--cds-spacing-12, 6rem));
25793
+ margin-bottom: var(--cds-spacing-05, 1rem);
25794
+ }
25795
+ .c4p--coachmark-overlay__body {
25796
+ padding: var(--cds-spacing-01, 0.125rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem);
25797
+ }
25798
+ .c4p--coachmark-overlay__body .bx--btn--ghost {
25799
+ color: var(--cds-inverse-link, #78a9ff);
25800
+ }
25801
+ .c4p--coachmark-overlay__body .bx--btn--ghost:hover {
25802
+ color: var(--cds-inverse-link, #78a9ff);
25803
+ }
25804
+ .c4p--coachmark-overlay__body c4p--coachmark-overlay-element {
25805
+ display: block;
25806
+ max-width: 100%;
25807
+ flex: 0 0 100%;
25808
+ }
25809
+ .c4p--coachmark-overlay__body c4p--coachmark-overlay-element c4p--coachmark-overlay-element__content {
25810
+ padding-bottom: var(--cds-spacing-05, 1rem);
25811
+ }
25812
+ .c4p--coachmark-overlay__body c4p--coachmark-overlay-element c4p--coachmark-overlay-element__title > div {
25813
+ margin: 0 0 var(--cds-spacing-03, 0.5rem);
25814
+ }
25815
+ .c4p--coachmark-overlay__body c4p--coachmark-overlay-element c4p--coachmark-overlay-element__title > div > h2 {
25816
+ font-size: var(--cds-productive-heading-02-font-size, 1rem);
25817
+ font-weight: var(--cds-productive-heading-02-font-weight, 600);
25818
+ line-height: var(--cds-productive-heading-02-line-height, 1.375);
25819
+ letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
25820
+ order: 1;
25821
+ }
25822
+ .c4p--coachmark-overlay__footer {
25823
+ display: flex;
25824
+ align-items: center;
25825
+ justify-content: flex-end;
25826
+ }
25827
+ .c4p--coachmark-overlay__light .c4p--coachmark-overlay__body .bx--link {
25828
+ color: var(--cds-inverse-link, #78a9ff);
25829
+ }
25830
+ .c4p--coachmark-overlay__light .c4p--coachmark-overlay__body .bx--link:hover {
25831
+ color: #a6c8ff;
25832
+ }
25833
+ .c4p--coachmark-overlay__light .c4p--coachmark-overlay__body .bx--link:active {
25834
+ color: var(--cds-text-04, #ffffff);
25835
+ }
25836
+ .c4p--coachmark-overlay__light .c4p--coachmark-overlay__body .bx--link:focus {
25837
+ outline-color: var(--cds-text-04, #ffffff);
25838
+ }
25839
+ .c4p--coachmark-overlay__light .c4p--coachmark-overlay__body .bx--btn--ghost:hover {
25840
+ background-color: var(--cds-inverse-hover-ui, #4c4c4c);
25841
+ }
25842
+ .c4p--coachmark-overlay__light .c4p--coachmark-overlay__body .bx--btn--ghost:active {
25843
+ background-color: var(--cds-active-secondary, #6f6f6f);
25844
+ }
25845
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--link {
25846
+ color: #0062fe;
25847
+ }
25848
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--link:hover {
25849
+ color: #0043ce;
25850
+ }
25851
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--link:active {
25852
+ color: var(--cds-link-02, #0043ce);
25853
+ }
25854
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--link:focus {
25855
+ color: var(--cds-inverse-01, #ffffff);
25856
+ outline-color: var(--cds-inverse-01, #ffffff);
25857
+ }
25858
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--btn--primary:focus {
25859
+ background-color: var(--cds-button-primary-active, #002d9c);
25860
+ box-shadow: inset 0 0 0 var(--cds-spacing-01, 0.125rem) var(--cds-interactive-01, #0f62fe), inset 0 0 0 0.1875rem var(--cds-interactive-03, #0f62fe);
25861
+ }
25862
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--btn--ghost:hover {
25863
+ background-color: var(--cds-inverse-hover-ui, #4c4c4c);
25864
+ }
25865
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--btn--ghost:active {
25866
+ background-color: var(--cds-button-tertiary-active, #002d9c);
25867
+ }
25868
+ .c4p--coachmark-overlay__dark .c4p--coachmark-overlay__body .bx--btn--ghost:focus {
25869
+ box-shadow: inset 0 0 0 var(--cds-spacing-01, 0.125rem) var(--cds-interactive-01, #0f62fe), inset 0 0 0 0.1875rem var(--cds-interactive-03, #0f62fe);
25870
+ }
25871
+ .c4p--coachmark-overlay .c4p--carousel__item {
25872
+ flex: 0 0 100% !important;
25873
+ }
25874
+
25875
+ /* stylelint-disable carbon/theme-token-use */
25876
+ /* stylelint-disable declaration-no-important */
25877
+ .c4p--coachmark-tagline {
25878
+ position: fixed;
25879
+ z-index: 1000;
25880
+ right: var(--cds-spacing-05, 1rem);
25881
+ bottom: 0;
25882
+ display: grid;
25883
+ overflow: hidden;
25884
+ width: 18rem;
25885
+ border-radius: var(--cds-spacing-01, 0.125rem) var(--cds-spacing-01, 0.125rem) 0 0;
25886
+ background: #6929c4;
25887
+ background-image: linear-gradient(90deg, #001d6c 0%, #6929c4 100%);
25888
+ color: #ffffff !important;
25889
+ grid-template-columns: [ctacol] auto [closebtncol] var(--cds-spacing-08, 2.5rem);
25890
+ opacity: 1;
25891
+ transition: opacity 240ms cubic-bezier(0.2, 0, 1, 0.9) 300ms;
25892
+ transition-delay: 240ms;
25893
+ }
25894
+ @media (prefers-reduced-motion) {
25895
+ .c4p--coachmark-tagline {
25896
+ transition: none;
25897
+ }
25898
+ }
25899
+ .c4p--coachmark-tagline::before {
25900
+ position: absolute;
25901
+ z-index: -1;
25902
+ top: 0;
25903
+ right: 0;
25904
+ bottom: 0;
25905
+ left: 0;
25906
+ background: linear-gradient(90deg, #0043ce 0%, #6929c4 100%);
25907
+ content: "";
25908
+ opacity: 0;
25909
+ /* stylelint-disable-next-line carbon/motion-duration-use */
25910
+ transition: opacity 240ms cubic-bezier(0.2, 0, 1, 0.9);
25911
+ }
25912
+ @media (prefers-reduced-motion) {
25913
+ .c4p--coachmark-tagline::before {
25914
+ transition: none;
25915
+ }
25916
+ }
25917
+ .c4p--coachmark-tagline:hover::before {
25918
+ opacity: 1;
25919
+ }
25920
+ .c4p--coachmark-tagline--is-open {
25921
+ background: #ffffff;
25922
+ opacity: 0;
25923
+ }
25924
+ .c4p--coachmark-tagline--is-open c4p--coachmark-tagline__cta {
25925
+ opacity: 0;
25926
+ }
25927
+ .c4p--coachmark-tagline--is-open c4p--coachmark-tagline--close-btn {
25928
+ display: none;
25929
+ }
25930
+ .c4p--coachmark-tagline--is-open::before {
25931
+ background: #ffffff;
25932
+ }
25933
+ .c4p--coachmark-tagline__cta {
25934
+ display: grid;
25935
+ padding: var(--cds-spacing-03, 0.5rem) 0;
25936
+ border: none;
25937
+ background: transparent;
25938
+ color: #ffffff !important;
25939
+ grid-template-columns: [iconcol] var(--cds-spacing-07, 2rem) [bodycol] auto;
25940
+ text-align: left;
25941
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25942
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25943
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25944
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25945
+ }
25946
+ .c4p--coachmark-tagline__cta:hover {
25947
+ cursor: pointer !important;
25948
+ }
25949
+ .c4p--coachmark-tagline__cta .c4p--coachmark-tagline__idea {
25950
+ justify-self: center;
25951
+ }
25952
+ .c4p--coachmark-tagline--close-btn {
25953
+ width: var(--cds-spacing-07, 2rem);
25954
+ height: var(--cds-spacing-07, 2rem);
25955
+ margin-left: auto !important;
25956
+ color: #ffffff;
25957
+ }
25958
+ .c4p--coachmark-tagline--close-btn svg > path {
25959
+ margin: 0;
25960
+ fill: #ffffff !important;
25961
+ }
25962
+ .c4p--coachmark-tagline--close-btn:hover {
25963
+ background-color: #7c3dd6 !important;
25964
+ }
25965
+
25966
+ /**
25967
+ * The CoachmarkBeacon specifically is theme-agnostic, and so we have to
25968
+ * use color tokens to keep the colors static instead of theme tokens
25969
+ * that will change depending on the selected theme.
25970
+ *
25971
+ * Because of this, we are triggering a *large* amount of linting errors.
25972
+ * So, we're adding 4 "disable" rules for the file instead of 50
25973
+ * individual rules.
25974
+ */
25975
+ /* stylelint-disable carbon/layout-token-use */
25976
+ /* stylelint-disable carbon/motion-duration-use */
25977
+ /* stylelint-disable carbon/theme-token-use */
25978
+ .c4p--coachmark-beacon {
25979
+ position: relative;
25980
+ }
25981
+ .c4p--coachmark-beacon-default .c4p--coachmark-beacon__target::after {
25982
+ position: absolute;
25983
+ top: calc(var(--cds-spacing-01, 0.125rem) + var(--cds-spacing-03, 0.5rem));
25984
+ left: calc(var(--cds-spacing-01, 0.125rem) + var(--cds-spacing-03, 0.5rem));
25985
+ width: var(--cds-spacing-04, 0.75rem);
25986
+ height: var(--cds-spacing-04, 0.75rem);
25987
+ border-radius: 50%;
25988
+ background-color: #4589ff;
25989
+ content: "";
25990
+ }
25991
+ .c4p--coachmark-beacon-ring .c4p--coachmark-beacon__center {
25992
+ -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='80px' height='80px' viewBox='008080'><pathfill='white' stroke='none' d='M0,0m37-2a404001010Zm128a1212011-10Z'/></svg>");
25993
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='80px' height='80px' viewBox='008080'><pathfill='white' stroke='none' d='M0,0m37-2a404001010Zm128a1212011-10Z'/></svg>");
25994
+ }
25995
+ .c4p--coachmark-beacon-ring .c4p--coachmark-beacon__center circle {
25996
+ /* stylelint-disable-next-line carbon/motion-easing-use */
25997
+ animation: ring-ripple 2s infinite;
25998
+ }
25999
+ @media (prefers-reduced-motion) {
26000
+ .c4p--coachmark-beacon-ring .c4p--coachmark-beacon__center circle {
26001
+ animation: none;
26002
+ }
26003
+ }
26004
+ .c4p--coachmark-beacon .c4p--coachmark-beacon__target {
26005
+ position: absolute;
26006
+ top: calc(-1 * var(--cds-spacing-05, 1rem));
26007
+ left: calc(-1 * var(--cds-spacing-05, 1rem));
26008
+ width: var(--cds-spacing-07, 2rem);
26009
+ height: var(--cds-spacing-07, 2rem);
26010
+ padding: 0;
26011
+ border: none;
26012
+ border-radius: 50%;
26013
+ background-color: transparent;
26014
+ cursor: pointer;
26015
+ }
26016
+ .c4p--coachmark-beacon .c4p--coachmark-beacon__target[aria-expanded=true] circle {
26017
+ animation: none;
26018
+ }
26019
+ .c4p--coachmark-beacon__center {
26020
+ position: absolute;
26021
+ z-index: 6900;
26022
+ top: calc((var(--cds-spacing-06, 1.5rem) - var(--cds-spacing-01, 0.125rem)) * -1);
26023
+ left: calc((var(--cds-spacing-06, 1.5rem) - var(--cds-spacing-01, 0.125rem)) * -1);
26024
+ width: var(--cds-spacing-11, 5rem);
26025
+ height: var(--cds-spacing-11, 5rem);
26026
+ pointer-events: none;
26027
+ }
26028
+ .c4p--coachmark-beacon__center circle {
26029
+ /* stylelint-disable-next-line carbon/motion-easing-use */
26030
+ animation: ripple 2s infinite;
26031
+ fill: var(--cds-support-04, #0043ce);
26032
+ fill-opacity: 0;
26033
+ -webkit-mask-image: none;
26034
+ mask-image: none;
26035
+ stroke: var(--cds-support-04, #0043ce);
26036
+ stroke-opacity: 0;
26037
+ stroke-width: 1px;
26038
+ transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);
26039
+ }
26040
+ @media (prefers-reduced-motion) {
26041
+ .c4p--coachmark-beacon__center circle {
26042
+ animation: none;
26043
+ }
26044
+ }
26045
+
26046
+ @keyframes ripple {
26047
+ 0% {
26048
+ fill-opacity: 0;
26049
+ r: 1px;
26050
+ stroke-opacity: 0;
26051
+ transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
26052
+ }
26053
+ 31% {
26054
+ fill-opacity: 0.2;
26055
+ stroke-opacity: 1;
26056
+ }
26057
+ 62% {
26058
+ fill-opacity: 0;
26059
+ r: 32px;
26060
+ stroke-opacity: 0;
26061
+ }
26062
+ 100% {
26063
+ fill-opacity: 0;
26064
+ r: 32px;
26065
+ stroke-opacity: 0;
26066
+ }
26067
+ }
26068
+ @keyframes ring-ripple {
26069
+ 0% {
26070
+ fill-opacity: 0;
26071
+ r: 12px;
26072
+ stroke-opacity: 0;
26073
+ transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
26074
+ }
26075
+ 31% {
26076
+ fill-opacity: 0.2;
26077
+ stroke-opacity: 1;
26078
+ }
26079
+ 62% {
26080
+ fill-opacity: 0;
26081
+ r: 32px;
26082
+ stroke-opacity: 0;
26083
+ }
26084
+ 100% {
26085
+ fill-opacity: 0;
26086
+ r: 32px;
26087
+ stroke-opacity: 0;
26088
+ }
26089
+ }
26090
+ .c4p--coachmark-overlay-elements__element-stepped-media {
26091
+ height: 8rem;
26092
+ margin-bottom: var(--cds-spacing-05, 1rem);
26093
+ }
26094
+ .c4p--coachmark-overlay-elements__footer {
26095
+ display: flex;
26096
+ align-items: center;
26097
+ justify-content: flex-end;
26098
+ }
26099
+ .c4p--coachmark-overlay-elements--controls-progress {
26100
+ margin-right: auto;
26101
+ justify-self: flex-start;
26102
+ font-size: var(--cds-helper-text-01-font-size, 0.75rem);
26103
+ line-height: var(--cds-helper-text-01-line-height, 1.33333);
26104
+ letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
26105
+ }
26106
+
26107
+ .c4p--coachmark-overlay-element__content {
26108
+ padding-bottom: var(--cds-spacing-05, 1rem);
26109
+ }
26110
+ .c4p--coachmark-overlay-element__title {
26111
+ font-size: var(--cds-productive-heading-02-font-size, 1rem);
26112
+ font-weight: var(--cds-productive-heading-02-font-weight, 600);
26113
+ line-height: var(--cds-productive-heading-02-line-height, 1.375);
26114
+ letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
26115
+ margin: 0 0 var(--cds-spacing-03, 0.5rem);
26116
+ }
26117
+ .c4p--coachmark-overlay-element__body {
26118
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
26119
+ font-weight: var(--cds-body-long-01-font-weight, 400);
26120
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
26121
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
26122
+ }
26123
+ .c4p--coachmark-overlay-element__button {
26124
+ margin-bottom: 0;
26125
+ }
26126
+
26127
+ .c4p--carousel__item .c4p--coachmark-overlay-element__button {
26128
+ margin-bottom: var(--cds-spacing-05, 1rem);
26129
+ }
26130
+
26131
+ /* stylelint-disable carbon/theme-token-use */
26132
+ .c4p--coachmark-stack-element {
26133
+ position: fixed;
26134
+ z-index: 5901;
26135
+ right: var(--cds-spacing-05, 1rem);
26136
+ bottom: -100%;
26137
+ transform: translateY(100%);
26138
+ }
26139
+ .c4p--coachmark-stack-element--is-mounted {
26140
+ bottom: 0;
26141
+ /* stylelint-disable-next-line carbon/motion-easing-use, carbon/motion-duration-use */
26142
+ transition: 240ms cubic-bezier(0.2, 0, 1, 0.9);
26143
+ }
26144
+ @media (prefers-reduced-motion) {
26145
+ .c4p--coachmark-stack-element--is-mounted {
26146
+ transition: none;
26147
+ }
26148
+ }
26149
+ .c4p--coachmark-stack-element--is-visible {
26150
+ opacity: 1;
26151
+ transform: translateY(0);
26152
+ }
26153
+ .c4p--coachmark-stack-element--is-stacked {
26154
+ bottom: 0;
26155
+ overflow: hidden;
26156
+ pointer-events: none;
26157
+ transform: perspective(9rem) translate3d(0, calc(var(--cds-spacing-09, 3rem) * -1), calc(var(--cds-spacing-05, 1rem) * -1));
26158
+ transform-origin: top center;
26159
+ }
26160
+ .c4p--coachmark-stack-element--is-stacked__light {
26161
+ background-color: #262626;
26162
+ }
26163
+ .c4p--coachmark-stack-element--is-stacked__dark {
26164
+ background-color: var(--cds-active-tertiary, #002d9c);
26165
+ }
26166
+
26167
+ .c4p--coachmark-stack-element ~ .c4p--coachmark-stack-element {
26168
+ z-index: 5902;
26169
+ }
26170
+
26171
+ .c4p--coachmark-stacked-home__nav-links {
26172
+ margin-top: var(--cds-spacing-04, 0.75rem);
26173
+ margin-left: calc(-1 * var(--cds-spacing-05, 1rem));
26174
+ }
26175
+ .c4p--coachmark-stacked-home__icon-idea {
26176
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
26177
+ }
26178
+
25600
26179
  /**
25601
26180
  * The InlineTip specifically is theme-agnostic, and so we have to
25602
26181
  * use color tokens to keep the colors static instead of theme tokens