chartist-plugin-tooltip.scss 828 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. $chart-tooltip-bg: #F4C63D;
  2. $chart-tooltip-color: #453D3F;
  3. .chartist-tooltip {
  4. position: absolute;
  5. display: inline-block;
  6. opacity: 0;
  7. min-width: 5em;
  8. padding: .5em;
  9. background: $chart-tooltip-bg;
  10. color: $chart-tooltip-color;
  11. font-family: Oxygen,Helvetica,Arial,sans-serif;
  12. font-weight: 700;
  13. text-align: center;
  14. pointer-events: none;
  15. z-index: 1;
  16. -webkit-transition: opacity .2s linear;
  17. -moz-transition: opacity .2s linear;
  18. -o-transition: opacity .2s linear;
  19. transition: opacity .2s linear;
  20. &:before {
  21. content: "";
  22. position: absolute;
  23. top: 100%;
  24. left: 50%;
  25. width: 0;
  26. height: 0;
  27. margin-left: -15px;
  28. border: 15px solid transparent;
  29. border-top-color: $chart-tooltip-bg;
  30. }
  31. &.tooltip-show {
  32. opacity: 1;
  33. }
  34. }
  35. .ct-area, .ct-line {
  36. pointer-events: none;
  37. }