diff options
| author | Mark Otto <[email protected]> | 2013-09-01 08:12:56 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-01 08:12:56 +0200 |
| commit | eb95574d8001591d1e056fcaeaf59138cbbb15a4 (patch) | |
| tree | 25257e8eac5cba7288d37065ecf3316b38cfe1bd | |
| parent | 3e62905f9da8d2589ae5cca3c870668cb35aec11 (diff) | |
| parent | a19ff2f50fae73df3c80b104647260c13b1a8c00 (diff) | |
| download | bootstrap-eb95574d8001591d1e056fcaeaf59138cbbb15a4.tar.xz bootstrap-eb95574d8001591d1e056fcaeaf59138cbbb15a4.zip | |
Merge branch 'breadcrumb-separator' of https://github.com/dancek/bootstrap into dancek-breadcrumb-separator
| -rw-r--r-- | less/breadcrumbs.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/less/breadcrumbs.less b/less/breadcrumbs.less index 92643d167..aded518ce 100644 --- a/less/breadcrumbs.less +++ b/less/breadcrumbs.less @@ -12,7 +12,7 @@ > li { display: inline-block; &+li:before { - content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space + content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space padding: 0 5px; color: @breadcrumb-color; } diff --git a/less/variables.less b/less/variables.less index caa7630f6..cfe768ccb 100644 --- a/less/variables.less +++ b/less/variables.less @@ -561,6 +561,7 @@ @breadcrumb-bg: #f5f5f5; @breadcrumb-color: #ccc; @breadcrumb-active-color: @gray-light; +@breadcrumb-separator: "/"; // Carousel |
