comparison dep/fmt/doc/bootstrap/breadcrumbs.less @ 343:1faa72660932

*: transfer back to cmake from autotools autotools just made lots of things more complicated than they should have and many things broke (i.e. translations)
author Paper <paper@paper.us.eu.org>
date Thu, 20 Jun 2024 05:56:06 -0400
parents
children
comparison
equal deleted inserted replaced
342:adb79bdde329 343:1faa72660932
1 //
2 // Breadcrumbs
3 // --------------------------------------------------
4
5
6 .breadcrumb {
7 padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
8 margin-bottom: @line-height-computed;
9 list-style: none;
10 background-color: @breadcrumb-bg;
11 border-radius: @border-radius-base;
12
13 > li {
14 display: inline-block;
15
16 + li:before {
17 content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
18 padding: 0 5px;
19 color: @breadcrumb-color;
20 }
21 }
22
23 > .active {
24 color: @breadcrumb-active-color;
25 }
26 }