All files / src/Onboarding/CarouselDots/CarouselDot/css CarouselDot.module.css

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 603x                                                                                                                      
.bulletNormal{
    composes: pointer from '~@zohodesk/components/lib/common/common.module.css';
  }
  .bulletNormal:hover {
    transform: scale(1.4);
  }
  .bullet {
    /* padding: 4px 3px; */
    position: relative;
    width: 8px;
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
  }
  .bullet,
  .bullet::after {
    transition: opacity var(--zd_transition2), background-color var(--zd_transition2), width var(--zd_transition6) cubic-bezier(0.165, 0.84, 0.44, 1),transform 0.2s ease-in-out;
  }
  .bullet::before,
  .bullet::after {
    content: '';
    width: inherit;
    height: inherit;
    border-radius: inherit;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .bullet::before {
    opacity: .4;
  }
  .bullet::before,
  .bulletActive::after {
    background-color: var(--zdt_button_primaryfill_bg);
  }
  .bulletActive {
    width: 30px;
  }
  .bulletActive::before,
  .bulletActive::after {
    width: 100%;
  }
  .bulletActive::after {
    opacity: 1;
    left:-100%;
    animation: progressLoading 5s linear infinite;
  }
  .animationPaused::after {
    animation-play-state: paused;
  }
  @keyframes progressLoading {
    0% {
      inset-inline-start: -100%;
    }
    100% {
      inset-inline-start: 0%;
    }
  }