aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorliuyl <[email protected]>2013-07-03 20:37:36 +0800
committerliuyl <[email protected]>2013-07-03 20:37:36 +0800
commit5b69d3405301ebf9f7047a459f727cbe5f73aedd (patch)
tree10802f4d65f51c5219b270ef07768cf804ff96b9 /less
parent749dc35328862896d613bfe72fc961e490037fad (diff)
downloadbootstrap-5b69d3405301ebf9f7047a459f727cbe5f73aedd.tar.xz
bootstrap-5b69d3405301ebf9f7047a459f727cbe5f73aedd.zip
use sibling selector instead of pseudo selector
Diffstat (limited to 'less')
-rw-r--r--less/breadcrumbs.less7
1 files changed, 2 insertions, 5 deletions
diff --git a/less/breadcrumbs.less b/less/breadcrumbs.less
index 2fe8217a3..956944a8b 100644
--- a/less/breadcrumbs.less
+++ b/less/breadcrumbs.less
@@ -12,15 +12,12 @@
> li {
display: inline-block;
text-shadow: 0 1px 0 #fff;
- &:after {
+ &+li:before {
display: inline-block;
- content: "\00a0 /"; // Unicode space added since inline-block means non-collapsing white-space
+ content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: #ccc;
}
- &:last-child:after {
- display: none; // No divider after last element
- }
}
> .active {
color: @gray-light;