Skip to content

Commit

Permalink
Revert "Fix #803 by unquoting all UTF8 escapes"
Browse files Browse the repository at this point in the history
This reverts commit 443d5b4.
This "fix" breaks everything. Sorry!
  • Loading branch information
glebm committed Jan 19, 2015
1 parent 13ac193 commit daeb43d
Show file tree
Hide file tree
Showing 3 changed files with 259 additions and 266 deletions.
2 changes: 1 addition & 1 deletion assets/stylesheets/bootstrap/_breadcrumbs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
display: inline-block;

+ li:before {
content: #{$breadcrumb-separator}\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;
}
Expand Down
Loading

2 comments on commit daeb43d

@albirs
Copy link

@albirs albirs commented on daeb43d Mar 11, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Download ZIP "Download Sass" on http://getbootstrap.com/getting-started/#download still has this Bug!! Please update!!

@glebm
Copy link
Member Author

@glebm glebm commented on daeb43d Mar 15, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@albirs Thank you for pointing this out, updated! 👍

Please sign in to comment.