diff options
| author | Mark Otto <[email protected]> | 2014-07-08 02:04:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-08 02:04:48 -0700 |
| commit | d7b38d8c4a2669f54f204bc2e555bf58b9717441 (patch) | |
| tree | e042db88d9a9c9ec77e684d50d867b8230fac9a8 /less/progress-bars.less | |
| parent | 6fda4098538693259226b1f67d57ff4905a4c173 (diff) | |
| download | bootstrap-d7b38d8c4a2669f54f204bc2e555bf58b9717441.tar.xz bootstrap-d7b38d8c4a2669f54f204bc2e555bf58b9717441.zip | |
Drop: all vendor prefix mixins because autoprefixer
Diffstat (limited to 'less/progress-bars.less')
| -rw-r--r-- | less/progress-bars.less | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/less/progress-bars.less b/less/progress-bars.less index d5fbfb7db..04499daa1 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -30,7 +30,7 @@ margin-bottom: @line-height-computed; background-color: @progress-bg; border-radius: @border-radius-base; - .box-shadow(inset 0 1px 2px rgba(0,0,0,.1)); + box-shadow: inset 0 1px 2px rgba(0,0,0,.1); } // Bar of progress @@ -43,8 +43,8 @@ color: @progress-bar-color; text-align: center; background-color: @progress-bar-bg; - .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15)); - .transition(width .6s ease); + box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); + transition: width .6s ease; } // Striped bars @@ -64,7 +64,7 @@ // `.progress-bar.active` approach. .progress.active .progress-bar, .progress-bar.active { - .animation(progress-bar-stripes 2s linear infinite); + animation: progress-bar-stripes 2s linear infinite; } // Account for lower percentages |
