_drop.scss 665 B

123456789101112131415161718192021222324252627282930
  1. $popover-arrow-size: 1rem;
  2. $color: inherit;
  3. $backgroundColor: $btn-secondary-bg;
  4. $color: $text-color;
  5. $useDropShadow: false;
  6. $attachmentOffset: 0%;
  7. $easing: cubic-bezier(0, 0, 0.265, 1.00);
  8. .drop-element {
  9. position: absolute;
  10. display: none;
  11. opacity: 0;
  12. &.drop-open {
  13. display: block;
  14. }
  15. &.drop-open.drop-help.drop-out-of-bounds,
  16. &.drop-open-transitionend.drop-help.drop-out-of-bounds {
  17. display: none;
  18. }
  19. }
  20. .drop-element, .drop-element * {
  21. box-sizing: border-box;
  22. }
  23. @include drop-theme("help", $popover-help-bg, $popover-help-color);
  24. @include drop-animation-scale("drop", "help", $attachmentOffset: $attachmentOffset, $easing: $easing);