mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
2d9b089e16
Fix inconsistent use of tabs and spaces in less files GitOrigin-RevId: c69667f0dc6bc70ea3623890e2b2b741e358d454
25 lines
593 B
Text
Executable file
25 lines
593 B
Text
Executable file
//
|
|
// Breadcrumbs
|
|
// --------------------------------------------------
|
|
|
|
.breadcrumb {
|
|
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
|
|
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;
|
|
}
|
|
}
|