Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_popover.scss 835B

123456789101112131415161718192021222324252627282930313233
  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. .popover-mousemove-padding-bottom {
  7. bottom: -15px;
  8. height: 20px;
  9. position: absolute;
  10. right: 0;
  11. width: 100%;
  12. }
  13. .popover-mousemove-padding-right {
  14. height: 100%;
  15. position: absolute;
  16. right: -20;
  17. top: 0;
  18. width: 40px;
  19. }
  20. /**
  21. * An invisible element is added to the top of the popover to ensure the mouse
  22. * stays over the popover when the popover's height is shrunk, which would then
  23. * normally leave the mouse outside of the popover itself and cause a mouseleave
  24. * event.
  25. */
  26. .popover-mouse-padding-top {
  27. height: 30px;
  28. position: absolute;
  29. right: 0;
  30. top: -25px;
  31. width: 100%;
  32. }