From: Mark Otto Date: Sat, 21 Jan 2017 20:10:46 +0000 (-0800) Subject: remove pretty obvi comments X-Git-Tag: v4.0.0-beta~147^2~191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f7ce09fb8c074d6d9c76eb4d03f8a3c504a94a6;p=thirdparty%2Fbootstrap.git remove pretty obvi comments --- diff --git a/scss/_progress.scss b/scss/_progress.scss index 02e4c3bd2d..7b7bf544d3 100644 --- a/scss/_progress.scss +++ b/scss/_progress.scss @@ -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 @@ -14,19 +12,18 @@ 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; }