Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
b8c77aaf
Commit
b8c77aaf
authored
9 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
float the breadcrumb items to deal with that pesky inline-block madness
parent
dd5e096f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scss/_breadcrumb.scss
+3
-3
scss/_breadcrumb.scss
with
3 additions
and
3 deletions
+3
-3
scss/_breadcrumb.scss
+
3
-
3
View file @
b8c77aaf
...
...
@@ -4,16 +4,16 @@
list-style
:
none
;
background-color
:
$breadcrumb-bg
;
@include
border-radius
(
$border-radius
);
@include
clearfix
;
>
li
{
display
:
inline-block
;
float
:
left
;
+
li
:
:
before
{
$nbsp
:
"\00a0"
;
padding-right
:
.5rem
;
padding-left
:
.5rem
;
color
:
$breadcrumb-divider-color
;
content
:
"
#{
$breadcrumb-divider
}
#{
$nbsp
}
"
;
// Unicode space added since inline-block means non-collapsing white-space
content
:
"
#{
$breadcrumb-divider
}
"
;
// Unicode space added since inline-block means non-collapsing white-space
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment