Нема описа
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.

_progress.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* Progress
  2. ******************************************************************************* */
  3. .progress {
  4. --#{$prefix}progress-bar-shadow-color: #{$progress-bar-shadow-color};
  5. overflow: initial;
  6. .progress-bar {
  7. background-color: var(--#{$prefix}primary);
  8. box-shadow: 0 2px 4px 0 var(--#{$prefix}progress-bar-shadow-color);
  9. color: var(--#{$prefix}white);
  10. }
  11. .progress-bar:first-child {
  12. @include border-start-radius($progress-border-radius);
  13. }
  14. .progress-bar:last-child {
  15. @include border-end-radius($progress-border-radius);
  16. }
  17. }
  18. /* RTL
  19. ******************************************************************************* */
  20. :dir(rtl) {
  21. .progress-bar-striped {
  22. @include gradient-striped(rgba($white, .15), -45deg);
  23. }
  24. .progress-bar-animated {
  25. animation-direction: reverse;
  26. }
  27. }
  28. [data-bs-theme="dark"] {
  29. .progress {
  30. --#{$prefix}progress-bg: #{$progress-bg-dark};
  31. }
  32. }
  33. @each $state in map-keys($theme-colors) {
  34. .progress-bar.bg-#{$state} {
  35. --#{$prefix}progress-bar-shadow-color: rgba(var(--#{$prefix}#{$state}-rgb), .4);
  36. }
  37. }