aboutsummaryrefslogtreecommitdiff
path: root/less/_breadcrumb.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-12-03 18:15:37 -0800
committerMark Otto <[email protected]>2014-12-03 18:15:37 -0800
commitbad40d5c4ac47efdadcf524455cf3e12f5bec82b (patch)
treee60fdd0bf19b98380619d4e3c6029a760d64697c /less/_breadcrumb.less
parent6bd84210ffe766b18fd3cd11a5da4f5ee0d43ecc (diff)
parentbafd0b057eceae261da82e52ad78c65f08ddd166 (diff)
downloadbootstrap-bad40d5c4ac47efdadcf524455cf3e12f5bec82b.tar.xz
bootstrap-bad40d5c4ac47efdadcf524455cf3e12f5bec82b.zip
Merge pull request #1 from twbs/scss
Move to Sass
Diffstat (limited to 'less/_breadcrumb.less')
-rw-r--r--less/_breadcrumb.less27
1 files changed, 0 insertions, 27 deletions
diff --git a/less/_breadcrumb.less b/less/_breadcrumb.less
deleted file mode 100644
index 4b68c87c2..000000000
--- a/less/_breadcrumb.less
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// Breadcrumbs
-// --------------------------------------------------
-
-
-.breadcrumb {
- padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
- margin-bottom: @line-height-computed;
- list-style: none;
- background-color: @breadcrumb-bg;
- .border-radius(@border-radius-base);
-
- > li {
- display: inline-block;
-
- + li:before {
- content: "@{breadcrumb-divider}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
- padding-left: .5rem;
- padding-right: .5rem;
- color: @breadcrumb-divider-color;
- }
- }
-
- > .active {
- color: @breadcrumb-active-color;
- }
-}