Ohm-Management - Projektarbeit B-ME
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.sass 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. $progress-bar-background-color: $border !default
  2. $progress-value-background-color: $text !default
  3. $progress-indeterminate-duration: 1.5s !default
  4. .progress
  5. @extend %block
  6. -moz-appearance: none
  7. -webkit-appearance: none
  8. border: none
  9. border-radius: $radius-rounded
  10. display: block
  11. height: $size-normal
  12. overflow: hidden
  13. padding: 0
  14. width: 100%
  15. &::-webkit-progress-bar
  16. background-color: $progress-bar-background-color
  17. &::-webkit-progress-value
  18. background-color: $progress-value-background-color
  19. &::-moz-progress-bar
  20. background-color: $progress-value-background-color
  21. &::-ms-fill
  22. background-color: $progress-value-background-color
  23. border: none
  24. &:indeterminate
  25. animation-duration: $progress-indeterminate-duration
  26. animation-iteration-count: infinite
  27. animation-name: moveIndeterminate
  28. animation-timing-function: linear
  29. background-color: $progress-bar-background-color
  30. background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%)
  31. background-position: top left
  32. background-repeat: no-repeat
  33. background-size: 150% 150%
  34. &::-webkit-progress-bar
  35. background-color: transparent
  36. &::-moz-progress-bar
  37. background-color: transparent
  38. // Colors
  39. @each $name, $pair in $colors
  40. $color: nth($pair, 1)
  41. &.is-#{$name}
  42. &::-webkit-progress-value
  43. background-color: $color
  44. &::-moz-progress-bar
  45. background-color: $color
  46. &::-ms-fill
  47. background-color: $color
  48. &:indeterminate
  49. background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%)
  50. // Sizes
  51. &.is-small
  52. height: $size-small
  53. &.is-medium
  54. height: $size-medium
  55. &.is-large
  56. height: $size-large
  57. @keyframes moveIndeterminate
  58. from
  59. background-position: 200% 0
  60. to
  61. background-position: -200% 0