aboutsummaryrefslogtreecommitdiff
path: root/less/progress-bars.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-05-09 17:20:46 -0700
committerMark Otto <[email protected]>2013-05-09 17:20:46 -0700
commit6fba68eb8b036fad1bc4f33484889cccf2480bff (patch)
tree8fed10d5c153265d13033c68226578ef56b9c9c0 /less/progress-bars.less
parent7b6352d2cf6f04b46918b1cc8bad50ff92fdbe07 (diff)
downloadbootstrap-6fba68eb8b036fad1bc4f33484889cccf2480bff.tar.xz
bootstrap-6fba68eb8b036fad1bc4f33484889cccf2480bff.zip
Unitless line-height
* Instead of 20px as @line-height-base, use 1.5 * Update typographic scale for headings to use unitless as well--required some twerking of decimals a bit and some rounding * Introduce new @line-height-computed value, which takes base font-size and multiplies it by 1.5, for use in padding and margin on components
Diffstat (limited to 'less/progress-bars.less')
-rw-r--r--less/progress-bars.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/progress-bars.less b/less/progress-bars.less
index 9df0251e3..e963fa968 100644
--- a/less/progress-bars.less
+++ b/less/progress-bars.less
@@ -44,8 +44,8 @@
// Outer container
.progress {
overflow: hidden;
- height: @line-height-base;
- margin-bottom: @line-height-base;
+ height: @line-height-computed;
+ 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));