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.

_popover.scss 951B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. * Mousemove padding styles are used to add invisible elements to the popover
  3. * to allow mouse movement from the popover trigger to the popover itself
  4. * without triggering a mouseleave event.
  5. */
  6. %vertical-popover-padding {
  7. height: 100%;
  8. position: absolute;
  9. top: 0;
  10. width: 20px;
  11. padding: 20px 0;
  12. top: -20px;
  13. }
  14. %horizontal-popover-padding {
  15. height: 25px;
  16. position: absolute;
  17. right: 0;
  18. width: 100%;
  19. padding: 0 35px;
  20. left: -35px;
  21. }
  22. .popover-mousemove-padding-left {
  23. @extend %vertical-popover-padding;
  24. left: -35px;
  25. }
  26. .popover-mousemove-padding-right {
  27. @extend %vertical-popover-padding;
  28. right: -35px;
  29. }
  30. .popover-mousemove-padding-bottom {
  31. @extend %horizontal-popover-padding;
  32. bottom: -40px;
  33. }
  34. .popover-mousemove-padding-top {
  35. @extend %horizontal-popover-padding;
  36. top: -40px;
  37. }
  38. .popover {
  39. margin: -16px -24px;
  40. padding: 16px 24px;
  41. z-index: $popoverZ;
  42. }