mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 02:00:10 +02:00
Fix inconsistent use of tabs and spaces in less files GitOrigin-RevId: c69667f0dc6bc70ea3623890e2b2b741e358d454
26 lines
593 B
Plaintext
Executable File
26 lines
593 B
Plaintext
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;
|
|
}
|
|
}
|