From 820c44c86e2deff2c1c95262b0a90863b6e05c3b Mon Sep 17 00:00:00 2001 From: Jonathan Kelley Date: Wed, 24 Apr 2013 12:37:54 -0500 Subject: [PATCH] Remove divider after last element in breadcrumbs --- vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss b/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss index f0d124a4..92f8e9cb 100644 --- a/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss +++ b/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss @@ -18,8 +18,11 @@ padding: 0 5px; color: #ccc; } + &:last-child:after { + content: ""; // No divider after last element + } } > .active { color: $grayLight; } -} \ No newline at end of file +}