tour.css 2.55 KB
Newer Older
f3brysan committed
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
/* Tour css */
/*----------*/
.tippy-popper {
  border : none;
  border-radius : 0.5rem;
  -webkit-filter : drop-shadow(-8px 12px 18px rgba(25, 42, 70, 0.13));
          filter : drop-shadow(-8px 12px 18px rgba(25, 42, 70, 0.13));
}

.tippy-popper .tippy-tooltip {
  /* tour tippy tooltip width */
  width : auto !important;
}

.tippy-popper .tippy-tooltip .tippy-arrow {
  /* border-color tippy arrow */
  border-bottom-color : #5A8DEE;
  -webkit-transform : scale(1.5) !important;
      -ms-transform : scale(1.5) !important;
          transform : scale(1.5) !important;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content {
  background-color : #5A8DEE;
  padding : 1.3rem 1rem;
  border-radius : 0.5rem;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-header {
  padding : 0;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-text {
  color : #FFFFFF;
  font-size : 1rem;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-footer {
  padding : 0;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-footer .shepherd-buttons {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display :         flex;
  -webkit-box-pack : center;
  -webkit-justify-content : center;
  -ms-flex-pack : center;
          justify-content : center;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-footer .shepherd-buttons li {
  margin : 0;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-footer .shepherd-buttons .shepherd-button {
  /* Tour content buttons */
  background-color : #E2ECFF !important;
  border-radius : 6px;
  padding : 0.7rem 2rem;
  color : #5A8DEE;
  margin : 0 5px;
}

.tippy-popper .tippy-tooltip .tippy-content .shepherd-content .shepherd-footer .shepherd-buttons .shepherd-button:hover {
  background-color : rgba(255, 255, 255, 0.1);
}

.tippy-popper .tippy-tooltip .tippy-content [data-shepherd-step-id='step-4'] .shepherd-footer .shepherd-buttons {
  /* to align footer buttons at center */
  text-align : center;
}

/*  For border-color on placement */
.tippy-popper[x-placement='top'] .tippy-arrow {
  border-color : transparent;
  border-top-color : #5A8DEE;
}

.tippy-popper[x-placement='bottom'] .tippy-arrow {
  border-color : transparent;
  border-bottom-color : #5A8DEE;
}

.tippy-popper[x-placement='right'] .tippy-arrow {
  border-color : transparent;
  border-left-color : #5A8DEE;
}

.tippy-popper[x-placement='left'] .tippy-arrow {
  border-color : transparent;
  border-right-color : #5A8DEE;
}