]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
remove comments, align-items, and unnecessary height
authorDave Poole <david.poole@bigfishgames.com>
Fri, 26 May 2017 19:47:09 +0000 (12:47 -0700)
committerMark Otto <markd.otto@gmail.com>
Fri, 11 Aug 2017 05:50:59 +0000 (22:50 -0700)
scss/_progress.scss

index cd52ed38602ff8e24d233bb6395ee57cd51d613a..d2a0c820d81ca5d9c8d48d5568372d559dd87d01 100644 (file)
@@ -1,13 +1,10 @@
-// Progress animations
 @keyframes progress-bar-stripes {
   from { background-position: $progress-height 0; }
   to { background-position: 0 0; }
 }
 
-// Basic progress bar
 .progress {
   display: flex;
-  align-items: center;
   height: $progress-height;
   overflow: hidden; // force rounded corners by cropping it
   font-size: $progress-font-size;
   display: flex;
   align-items: center;
   justify-content: center;
-  height: 100%;
   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;
 }