0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-20 17:54:23 +01:00

Fix component margin and padding values to use @line-height-computed

This commit is contained in:
Aaron 2013-05-10 09:21:27 -06:00
parent 90e4ff73d2
commit 94cc333553
7 changed files with 9 additions and 9 deletions

@ -5,7 +5,7 @@
// Parent container // Parent container
.accordion { .accordion {
margin-bottom: @line-height-base; margin-bottom: @line-height-computed;
} }
// Group == heading + body // Group == heading + body

@ -5,7 +5,7 @@
.breadcrumb { .breadcrumb {
padding: 8px 15px; padding: 8px 15px;
margin: 0 0 @line-height-base; margin: 0 0 @line-height-computed;
list-style: none; list-style: none;
background-color: #f5f5f5; background-color: #f5f5f5;
border-radius: @border-radius-base; border-radius: @border-radius-base;

@ -25,8 +25,8 @@ code {
// Blocks of code // Blocks of code
pre { pre {
display: block; display: block;
padding: ((@line-height-base - 1) / 2); padding: ((@line-height-computed - 1) / 2);
margin: 0 0 (@line-height-base / 2); margin: 0 0 (@line-height-computed / 2);
font-size: (@font-size-base - 1); // 14px to 13px font-size: (@font-size-base - 1); // 14px to 13px
line-height: @line-height-base; line-height: @line-height-base;
word-break: break-all; word-break: break-all;
@ -40,7 +40,7 @@ pre {
// Make prettyprint styles more spaced out for readability // Make prettyprint styles more spaced out for readability
&.prettyprint { &.prettyprint {
margin-bottom: @line-height-base; margin-bottom: @line-height-computed;
} }
// Account for some code outputs that place code tags in pre tags // Account for some code outputs that place code tags in pre tags

@ -340,7 +340,7 @@
// Dividers (basically an hr) within dropdowns and nav lists // Dividers (basically an hr) within dropdowns and nav lists
.nav-divider(@top: #e5e5e5, @bottom: #fff) { .nav-divider(@top: #e5e5e5, @bottom: #fff) {
height: 2px; // 1px for background, one for border height: 2px; // 1px for background, one for border
margin: ((@line-height-base / 2) - 1) 0; margin: ((@line-height-computed / 2) - 1) 0;
overflow: hidden; overflow: hidden;
background-color: @top; background-color: @top;
border-bottom: 1px solid @bottom; border-bottom: 1px solid @bottom;

@ -4,7 +4,7 @@
.pager { .pager {
margin: @line-height-base 0; margin: @line-height-computed 0;
list-style: none; list-style: none;
text-align: center; text-align: center;
.clearfix(); .clearfix();

@ -3,7 +3,7 @@
// -------------------------------------------------- // --------------------------------------------------
.pagination { .pagination {
display: inline-block; display: inline-block;
margin: @line-height-base 0; margin: @line-height-computed 0;
border-radius: @border-radius-base; border-radius: @border-radius-base;
} }
.pagination > li { .pagination > li {

@ -17,7 +17,7 @@ th {
.table { .table {
width: 100%; width: 100%;
margin-bottom: @line-height-base; margin-bottom: @line-height-computed;
// Cells // Cells
thead > tr > th, thead > tr > th,
tbody > tr > th, tbody > tr > th,