diff options
| author | Mark Otto <[email protected]> | 2013-10-15 11:19:24 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-15 11:19:24 -0700 |
| commit | 2380b6be9937dfc0ca924a2334adfb21ddb91cc0 (patch) | |
| tree | 02ece3383c66eff019dcecd63613d65033652afb | |
| parent | b05a287eb6d9cebe8590667ef260dd8ec70d5717 (diff) | |
| parent | 042363561415939fb046092705c9624fd8008177 (diff) | |
| download | bootstrap-2380b6be9937dfc0ca924a2334adfb21ddb91cc0.tar.xz bootstrap-2380b6be9937dfc0ca924a2334adfb21ddb91cc0.zip | |
Merge pull request #11102 from ZDroid/less-fix
Ditch `&`, as `+ ...` is enought
| -rw-r--r-- | less/breadcrumbs.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/breadcrumbs.less b/less/breadcrumbs.less index aded518ce..60b33ea72 100644 --- a/less/breadcrumbs.less +++ b/less/breadcrumbs.less @@ -11,7 +11,7 @@ border-radius: @border-radius-base; > li { display: inline-block; - &+li:before { + + li:before { content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space padding: 0 5px; color: @breadcrumb-color; |
