Initial commit.
This commit is contained in:
commit
0335f5aa93
1168 changed files with 261999 additions and 0 deletions
23
app/bower_components/sass-bootstrap/lib/_breadcrumbs.scss
vendored
Normal file
23
app/bower_components/sass-bootstrap/lib/_breadcrumbs.scss
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
//
|
||||
// Breadcrumbs
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
.breadcrumb {
|
||||
padding: 8px 15px;
|
||||
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-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
|
||||
padding: 0 5px;
|
||||
color: $breadcrumb-color;
|
||||
}
|
||||
}
|
||||
> .active {
|
||||
color: $breadcrumb-active-color;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue