You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tooltip.scss 535B

1234567891011121314151617181920212223242526
  1. .dc-tool-tip {
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. min-width: 100px;
  6. height: 30px;
  7. line-height: 30px;
  8. color: #fff;
  9. padding: 0 10px;
  10. background: rgba(0, 0, 0, 0.6);
  11. border-radius: 4px;
  12. visibility: hidden;
  13. pointer-events: none;
  14. z-index: -1;
  15. &:before {
  16. content: '';
  17. display: block;
  18. position: absolute;
  19. pointer-events: none;
  20. left: -10px;
  21. top: 5px;
  22. border-top: 10px solid transparent;
  23. border-bottom: 10px solid transparent;
  24. border-right: 10px solid rgba(0, 0, 0, 0.6);
  25. }
  26. }