// Parent container
.accordion {
- margin-bottom: @line-height-base;
+ margin-bottom: @line-height-computed;
}
// Group == heading + body
.breadcrumb {
padding: 8px 15px;
- margin: 0 0 @line-height-base;
+ margin: 0 0 @line-height-computed;
list-style: none;
background-color: #f5f5f5;
border-radius: @border-radius-base;
// Blocks of code
pre {
display: block;
- padding: ((@line-height-base - 1) / 2);
- margin: 0 0 (@line-height-base / 2);
+ padding: ((@line-height-computed - 1) / 2);
+ margin: 0 0 (@line-height-computed / 2);
font-size: (@font-size-base - 1); // 14px to 13px
line-height: @line-height-base;
word-break: break-all;
// Make prettyprint styles more spaced out for readability
&.prettyprint {
- margin-bottom: @line-height-base;
+ margin-bottom: @line-height-computed;
}
// Account for some code outputs that place code tags in pre tags
// Dividers (basically an hr) within dropdowns and nav lists
.nav-divider(@top: #e5e5e5, @bottom: #fff) {
height: 2px; // 1px for background, one for border
- margin: ((@line-height-base / 2) - 1) 0;
+ margin: ((@line-height-computed / 2) - 1) 0;
overflow: hidden;
background-color: @top;
border-bottom: 1px solid @bottom;
.pager {
- margin: @line-height-base 0;
+ margin: @line-height-computed 0;
list-style: none;
text-align: center;
.clearfix();
// --------------------------------------------------
.pagination {
display: inline-block;
- margin: @line-height-base 0;
+ margin: @line-height-computed 0;
border-radius: @border-radius-base;
}
.pagination > li {
.table {
width: 100%;
- margin-bottom: @line-height-base;
+ margin-bottom: @line-height-computed;
// Cells
thead > tr > th,
tbody > tr > th,