comparison static/bootstrap/less/breadcrumbs.less @ 149:d29e2f337b00

Updated to Bootstrap 3.0.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 12 Dec 2013 21:54:04 -0800
parents 130eccd396d8
children
comparison
equal deleted inserted replaced
148:f02e049d6546 149:d29e2f337b00
3 // -------------------------------------------------- 3 // --------------------------------------------------
4 4
5 5
6 .breadcrumb { 6 .breadcrumb {
7 padding: 8px 15px; 7 padding: 8px 15px;
8 margin: 0 0 @baseLineHeight; 8 margin-bottom: @line-height-computed;
9 list-style: none; 9 list-style: none;
10 background-color: #f5f5f5; 10 background-color: @breadcrumb-bg;
11 .border-radius(@baseBorderRadius); 11 border-radius: @border-radius-base;
12 > li { 12 > li {
13 display: inline-block; 13 display: inline-block;
14 .ie7-inline-block(); 14 + li:before {
15 text-shadow: 0 1px 0 @white; 15 content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
16 > .divider {
17 padding: 0 5px; 16 padding: 0 5px;
18 color: #ccc; 17 color: @breadcrumb-color;
19 } 18 }
20 } 19 }
21 > .active { 20 > .active {
22 color: @grayLight; 21 color: @breadcrumb-active-color;
23 } 22 }
24 } 23 }