diff options
| author | Mark Otto <[email protected]> | 2012-08-20 11:22:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-20 11:22:37 -0700 |
| commit | 2fda6a45aa762f66e573a81c279f79e362f3593f (patch) | |
| tree | 953f0aac0aa7550c90e8977fe93a519daf493f3e /less/progress-bars.less | |
| parent | 47697c5f352c08294fb8a077e1ab27dce7decdb9 (diff) | |
| download | bootstrap-2fda6a45aa762f66e573a81c279f79e362f3593f.tar.xz bootstrap-2fda6a45aa762f66e573a81c279f79e362f3593f.zip | |
bump up height of progress bars, give some extra depth with stacking bars, and then make the stacked bars actually work
Diffstat (limited to 'less/progress-bars.less')
| -rw-r--r-- | less/progress-bars.less | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/less/progress-bars.less b/less/progress-bars.less index c3de308eb..36744d89c 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -44,8 +44,8 @@ // Outer container .progress { overflow: hidden; - height: 18px; - margin-bottom: 18px; + height: @baseLineHeight; + margin-bottom: @baseLineHeight; #gradient > .vertical(#f5f5f5, #f9f9f9); .box-shadow(inset 0 1px 2px rgba(0,0,0,.1)); .border-radius(4px); @@ -65,6 +65,9 @@ .box-sizing(border-box); .transition(width .6s ease); } +.progress .bar + .bar { + .box-shadow(~"inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)"); +} // Striped bars .progress-striped .bar { |
