]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
remove pretty obvi comments
authorMark Otto <markdotto@gmail.com>
Sat, 21 Jan 2017 20:10:46 +0000 (12:10 -0800)
committerMark Otto <markdotto@gmail.com>
Sat, 21 Jan 2017 20:10:46 +0000 (12:10 -0800)
scss/_progress.scss

index 02e4c3bd2db8b1b95e5b6d71873b57f187ef7c0f..7b7bf544d3cd3a0f83ce91192e7e8fd9b108a92e 100644 (file)
@@ -1,10 +1,8 @@
-// Progress animations
 @keyframes progress-bar-stripes {
   from { background-position: $progress-height 0; }
   to { background-position: 0 0; }
 }
 
-// Basic progress bar
 .progress {
   display: flex;
   overflow: hidden; // force rounded corners by cropping it
   background-color: $progress-bg;
   @include border-radius($progress-border-radius);
 }
+
 .progress-bar {
   height: $progress-height;
   color: $progress-bar-color;
   background-color: $progress-bar-bg;
 }
 
-// Striped
 .progress-bar-striped {
   @include gradient-striped();
   background-size: $progress-height $progress-height;
 }
 
-// Animated
 .progress-bar-animated {
   animation: progress-bar-stripes $progress-bar-animation-timing;
 }