/* ===================================================================== */
/*                             OngletCustom.css                          */
/* � 2020  Dunin Technologie Inc.                                       */
/* ===================================================================== */

/* - DÉFINITION -------------------------------------------------------- */
/* Dispositions / espacements.                                           */
/* --------------------------------------------------------------------- */

/* - NOTES ------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

/* --------------------------------------------------------------------- */
/* 'Steppers'.                                                           */

/* Préchargez le SVG pour éviter l'effet de scintillement (flickering et flashing) au mouse hover */
.Stepper.Grand > .Boutons > .Inactif::after, .Stepper.Petit > .Boutons > .Inactif::after
{
  content: url("../../Client/Imgs/StepperActif.svg");
  display: none;
}
.Stepper.Grand > .Boutons > .Inactif.Dernier::after, .Stepper.Petit > .Boutons > .Inactif.Dernier::after
{
  content: url("../../Client/Imgs/StepperActifDernier.svg");
  display: none;
}
/* Apparence de l'état mouse hover */
.Stepper.Grand > .Boutons > .Inactif:hover::before, .Stepper.Petit > .Boutons > .Inactif:hover::before { content: url("../../Client/Imgs/StepperActif.svg"); }
.Stepper.Grand > .Boutons > .Inactif.Dernier:hover::before, .Stepper.Petit > .Boutons > .Inactif.Dernier:hover::before { content: url("../../Client/Imgs/StepperActifDernier.svg"); }
