aboutsummaryrefslogtreecommitdiff
path: root/less/progress-bars.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-08-20 11:22:37 -0700
committerMark Otto <[email protected]>2012-08-20 11:22:37 -0700
commit2fda6a45aa762f66e573a81c279f79e362f3593f (patch)
tree953f0aac0aa7550c90e8977fe93a519daf493f3e /less/progress-bars.less
parent47697c5f352c08294fb8a077e1ab27dce7decdb9 (diff)
downloadbootstrap-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.less7
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 {