Açıklama Yok
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.

_carousel.scss 926B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Carousel
  2. // *******************************************************************************
  3. .carousel {
  4. .carousel-item.active,
  5. .carousel-item.carousel-item-start {
  6. h1,
  7. .h1,
  8. h2,
  9. .h2,
  10. h3,
  11. .h3,
  12. h4,
  13. .h4,
  14. h5,
  15. .h5,
  16. h6,
  17. .h6 {
  18. color: $carousel-caption-color;
  19. }
  20. }
  21. .carousel-control-prev-icon,
  22. .carousel-control-next-icon {
  23. filter: invert(1);
  24. }
  25. }
  26. .carousel.carousel-dark {
  27. .carousel-item.active,
  28. .carousel-item.carousel-item-start {
  29. h1,
  30. .h1,
  31. h2,
  32. .h2,
  33. h3,
  34. .h3,
  35. h4,
  36. .h4,
  37. h5,
  38. .h5,
  39. h6,
  40. .h6 {
  41. color: $carousel-dark-caption-color;
  42. }
  43. }
  44. .carousel-control-prev-icon,
  45. .carousel-control-next-icon {
  46. filter: invert(0);
  47. }
  48. }
  49. [data-bs-theme="dark"] {
  50. .carousel:not(.carousel-dark) .carousel-caption,
  51. &.carousel:not(.carousel-dark) .carousel-caption {
  52. color: $carousel-caption-color;
  53. }
  54. }