chartist-plugin-tooltip.css 487 B

1234567891011121314151617181920212223
  1. .chartist-tooltip-wrap, .ct-chart {
  2. position: relative; }
  3. .chartist-tooltip {
  4. position: absolute;
  5. display: inline-block;
  6. opacity: 0;
  7. min-width: 5em;
  8. padding: 3px 8px;
  9. font-size: 12px;
  10. background: rgba(0, 0, 0, 0.7);
  11. color: #fff;
  12. font-weight: 400;
  13. text-align: center;
  14. pointer-events: none;
  15. z-index: 1;
  16. border-radius: 3px;
  17. transition: opacity .2s linear; }
  18. .chartist-tooltip.tooltip-show {
  19. opacity: 1; }
  20. .ct-area, .ct-line {
  21. pointer-events: none; }