bulma/sass/elements/progress.sass

62 lines
1.7 KiB
Sass
Raw Normal View History

2017-07-28 20:05:15 +00:00
$progress-bar-background-color: $border !default
$progress-value-background-color: $text !default
2016-03-26 16:46:15 +00:00
.progress
2018-09-04 13:24:50 +00:00
@extend %block
2016-03-26 16:46:15 +00:00
-moz-appearance: none
-webkit-appearance: none
border: none
border-radius: $radius-rounded
2016-03-26 16:46:15 +00:00
display: block
2016-10-30 10:41:53 +00:00
height: $size-normal
2016-03-26 16:46:15 +00:00
overflow: hidden
padding: 0
width: 100%
&::-webkit-progress-bar
2017-07-28 20:05:15 +00:00
background-color: $progress-bar-background-color
&::-webkit-progress-value
2017-07-28 20:05:15 +00:00
background-color: $progress-value-background-color
2016-03-26 16:46:15 +00:00
&::-moz-progress-bar
2017-07-28 20:05:15 +00:00
background-color: $progress-value-background-color
2017-10-19 06:43:57 +00:00
&::-ms-fill
background-color: $progress-value-background-color
border: none
2016-04-10 15:00:32 +00:00
// Colors
2016-03-26 16:46:15 +00:00
@each $name, $pair in $colors
$color: nth($pair, 1)
&.is-#{$name}
&::-webkit-progress-value
2016-06-29 22:59:48 +00:00
background-color: $color
2016-03-26 16:46:15 +00:00
&::-moz-progress-bar
2016-06-29 22:59:48 +00:00
background-color: $color
2017-10-19 06:43:57 +00:00
&::-ms-fill
background-color: $color
2018-10-08 01:32:48 +00:00
&:indeterminate
&::-webkit-progress-bar
background-color: transparent
&::-moz-progress-bar
background-color: transparent
animation: progress-indeterminate 1.5s linear infinite
background: $progress-bar-background-color linear-gradient(to right, $text 30%, $progress-bar-background-color 30%) top left / 150% 150% no-repeat
@each $name, $pair in $colors
$color: nth($pair, 1)
&.is-#{$name}
background: $progress-bar-background-color linear-gradient(to right, $color 30%, $progress-bar-background-color 30%) top left / 150% 150% no-repeat
2016-04-10 15:00:32 +00:00
// Sizes
&.is-small
2016-10-30 10:41:53 +00:00
height: $size-small
2016-04-10 15:00:32 +00:00
&.is-medium
2016-10-30 10:41:53 +00:00
height: $size-medium
2016-04-10 15:00:32 +00:00
&.is-large
2016-10-30 10:41:53 +00:00
height: $size-large
2018-10-08 01:32:48 +00:00
@keyframes progress-indeterminate
0%
background-position: 200% 0
100%
background-position: -200% 0