No Description
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 614B

123456789101112131415161718192021222324252627282930313233343536
  1. @mixin popover-variant($background) {
  2. background-color: $background;
  3. .popover-header {
  4. background-color: $background;
  5. color: color-yiq($background);
  6. }
  7. .popover-body {
  8. color: color-yiq($background);
  9. }
  10. .popover-header{
  11. border-color: rgba(color-yiq($background), .2);
  12. }
  13. &.bs-popover-top {
  14. .arrow::after {
  15. border-top-color: $background;
  16. }
  17. }
  18. &.bs-popover-right {
  19. .arrow::after {
  20. border-right-color: $background;
  21. }
  22. }
  23. &.bs-popover-bottom {
  24. .arrow::after {
  25. border-bottom-color: $background;
  26. }
  27. }
  28. &.bs-popover-left {
  29. .arrow::after {
  30. border-left-color: $background;
  31. }
  32. }
  33. }