From: Dave Poole Date: Fri, 26 May 2017 19:47:09 +0000 (-0700) Subject: remove comments, align-items, and unnecessary height X-Git-Tag: v4.0.0-beta.2~429 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36a21f355c9c0a87d9c9f6bb8eb208c3b477af9e;p=thirdparty%2Fbootstrap.git remove comments, align-items, and unnecessary height --- diff --git a/scss/_progress.scss b/scss/_progress.scss index cd52ed3860..d2a0c820d8 100644 --- a/scss/_progress.scss +++ b/scss/_progress.scss @@ -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; @@ -20,18 +17,15 @@ 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; }