vendor/assets/stylesheets/progress.css.scss in flashgrid-3.0.5 vs vendor/assets/stylesheets/progress.css.scss in flashgrid-3.1.0
- old
+ new
@@ -2,10 +2,18 @@
==================================================
#Progress */
/* #Progress
================================================== */
+@-webkit-keyframes progressBarStripes {
+ from { background-position: 40px 0; }
+ to { background-position: 0 0; }
+}
+@keyframes progressBarStripes {
+ from { background-position: 40px 0; }
+ to { background-position: 0 0; }
+}
.progress {
background: rgba(245,248,250,1);
border-radius: 500px;
height: 25px;
overflow: hidden;
@@ -19,7 +27,17 @@
height: 100%;
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
text-align: center;
width: 0;
+}
+.progress .bar-striped {
+ background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
+ -webkit-background-size: 40px 40px;
+ background-size: 40px 40px;
+}
+.progress .bar-striped.active {
+ -webkit-animation: progressBarStripes 2s linear infinite;
+ animation: progressBarStripes 2s linear infinite;
}
.progress-mini { height: 8px; }
\ No newline at end of file