<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ------------------------------------------------------------------------------
*
*  # Breadcrumb component
*
*  Overrides for breadcrumb bootstrap component
*
*  Version: 1.1
*  Latest update: Aug 10, 2016
*
* ---------------------------------------------------------------------------- */


// Basic styles
// -------------------------

// Base
.breadcrumb {
    border-radius: 0;
    margin-bottom: 0;

    // Breadcrumb item
    &gt; li {
        position: relative;

        // Links
        &gt; a {
            color: @breadcrumb-color;

            // Mute on hover
            &amp;:hover,
            &amp;:focus {
                .opacity(0.85);
            }
        }

        // Icons
        i {
            display: inline-block;
            font-size: @font-size-small;
        }

        // Dropdown menus
        &gt; .dropdown-menu {
            margin-top: 0;
            margin-left: 5px;
        }
        &amp;:first-child &gt; .dropdown-menu {
            margin-left: 0;
        }
        &gt; .dropdown-menu-right {
            margin-left: 0;
            margin-right: -10px;
        }
        &amp;:hover &gt; .dropdown-menu {
            display: block;
        }

        // Location text
        &amp;.location-text {
            margin-right: @element-horizontal-spacing;

            + li {
                &amp;:before {
                    content: none;
                }
                &gt; .dropdown-menu {
                    margin-left: 0;
                }
            }
        }
    }

    // Setup mobile view
    @media (max-width: @screen-xs-max) {

        // Inside headings
        .heading-elements &amp; {
            padding-top: 0;
            padding-bottom: 0;
        }

        // Disable absolute positioning
        &gt; li {
            position: static;

            // Make dropdown full width
            .dropdown-menu {
                width: 100%;
                margin: 0;
                border-radius: 0;
                border-width: 1px 0;

                &gt; li {
                    position: static;
                }
            }
        }

        // Submenu
        .dropdown-submenu &gt; .dropdown-menu {
            position: static;
        }
    }
}

// Breadcrumb inside page title
.page-title {
    .breadcrumb {
        float: none;
        display: block;
        margin: 0;
        padding-top: 3px;
        padding-bottom: 0;

        &amp;:first-child {
            padding-top: 0;
            padding-bottom: 3px;
        }

        // Add left spacing if title has icon
        &amp;.position-right {
            margin-left: (@icon-font-size + @element-horizontal-spacing + 5);
        }
    }
}

// Transparent breadcrumb
.page-header-content {

    // Breadcrumb
    &gt; .breadcrumb {
        padding-top: 0;
        padding-bottom: (@breadcrumb-padding-vertical * 2);

        &amp;:first-child {
            padding-bottom: 0;
            padding-top: (@breadcrumb-padding-vertical * 2);
        }
    }
}


// Divider styles
// -------------------------

// Dash
.breadcrumb-dash &gt; li + li:before  {
    content: '\2013\00a0';
}

// Arrow
.breadcrumb-arrow &gt; li + li:before  {
    content: '\2192\00a0';
}

// Arrows
.breadcrumb-arrows &gt; li + li:before  {
    content: '\00bb\00a0';
}

// Caret
.breadcrumb-caret &gt; li + li:before  {
    content: '\203A\00a0';
}


// Breadcrumb line
// -------------------------

// Base
.breadcrumb-line {
    position: relative;
    padding-left: @grid-gutter-width;
    padding-right: @grid-gutter-width;
    border-top: 1px solid @panel-default-border;

    // Clearing floats
    &amp;:after {
        content: '';
        display: table;
        clear: both;
    }

    // Inside page header (all levels)
    &amp;:first-child {
        border-top-width: 0;
        border-bottom: 1px solid @panel-default-border;
        
        // Z-index fix
        .page-header &amp; {
            z-index: (@zindex-navbar - 6);
        }
    }

    // In page header
    &amp;:not([class*=bg-]) {
        background-color: @page-header-default-bg;
    }
    
    // After page header content
    .page-header-content + &amp; {
        margin-bottom: @line-height-computed;
        border-bottom: 1px solid @panel-default-border;
        
        // Remove bottom margin if inside colored header
        .page-header-default &amp;,
        .page-header-inverse &amp; {
            margin-bottom: 0;
        }
        
        // And remove bottom border in light header
        .page-header-default &amp; {
            border-bottom-width: 0;
        }
    }
    
    // Darken inside white header
    .page-header-default &amp;:not([class*=bg-]) {
        background-color: @panel-footer-bg;
    }
    
    // Inside inversed header
    .page-header-inverse &amp; {
        border-top-width: 0;
        
        // Remove bottom border if before title
        &amp;:first-child {
            border-bottom-width: 0;
        }
    }

    // Breadcrumb
    .breadcrumb {
        margin-right: ((@content-padding-base * 2) + @icon-font-size);

        @media (min-width: @grid-float-breakpoint) {
            float: left;
            margin-right: 0;
        }
    }

    // Z-index correction for mobiles
    @media (max-width: @grid-float-breakpoint-max) {
        z-index: (@zindex-navbar - 2);
        background-color: inherit;
    }
}

// As a component
.breadcrumb-line-component {
    border-radius: @border-radius-base;
    padding-left: 0;
    padding-right: 0;
    
    // Set colors
    &amp;:not([class*=bg-]) {
        background-color: @panel-bg;
        border: 1px solid @panel-default-border;
        
        // Inside default header
        .page-header-default &amp; {
            border-width: 1px;
        }
        
        // Inside inversed header
        .page-header-inverse &amp; {
            border-width: 0;
        }
    }

    // Adjust horizontal spacing of breadcrumb
    .breadcrumb {
        margin-left: @grid-gutter-width;
    }
    
    // Inside page header
    .page-header &amp; {
        margin-left: @grid-gutter-width;
        margin-right: @grid-gutter-width;
    }
}

// Line with custom bg color
.breadcrumb-line[class*=bg-] {

    // Inherit colors
    a, i {
        color: inherit;
    }

    // Breadcrumb
    .breadcrumb {
        &gt; .active,
        &gt; li + li:before {
            color: fade(#fff, 75%);
        }
    }
}

// In dark containers
.breadcrumb-line[class*=bg-] {

    // Breadcrumb elements
    .breadcrumb-elements {
        border-top-color: fade(#fff, 10%);

        // Element items
        &gt; li {
            &gt; a {
                color: fade(#fff, 90%);
            }

            // Highlight on hover
            &amp;.open &gt; a,
            &gt; a:hover,
            &gt; a:focus {
                color: #fff;
            }
        }
    }
}


// Breadrumb elements
// ------------------------------

.breadcrumb-elements {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid @page-header-border-color;
    font-size: 0;

    // Clearing floats
    &amp;:after {
        content: '';
        display: table;
        clear: both;
    }

    // Items
    &gt; li {
        display: inline-block;
        position: static;
        font-size: @font-size-base;

        // Links
        &gt; a {
            display: block;
            padding: @breadcrumb-padding-vertical @content-padding-base;
            color: @breadcrumb-color;
        }

        // Highlight on hover
        &amp;.open &gt; a,
        &gt; a:hover,
        &gt; a:focus {
            background-color: darken(@panel-footer-bg, 1%);

            .breadcrumb-line[class*=bg-] &amp; {
                background-color: fade(#fff, 10%);
            }
        }
    }

    // Dropdown menu
    .dropdown-menu {
        margin-top: 0;
        left: auto;
        right: -1px;
        .border-top-radius(0);

        // Mobile view
        @media (max-width: @screen-xs-max) {
            left: -1px;

            // Links
            &gt; li &gt; a {
                padding-left: @content-padding-base;
                padding-right: @content-padding-base;
            }
        }
    }

    // Dropup menu
    .dropup &gt; .dropdown-menu {
        margin-bottom: 0;
        .border-bottom-radius(0);
    }

    // Collapse button
    [data-toggle="collapse"] {
        display: block;
        position: absolute;
        top: 0;
        right: @grid-gutter-width;
    }

    // Desktop view
    @media (min-width: @grid-float-breakpoint) {
        float: right;
        text-align: inherit;
        border-top: 0;

        // Collapse
        &amp;.collapse {
            display: block;
            visibility: visible;
        }

        // Items
        &gt; li {
            float: left;

            &amp;,
            .btn-group {
                position: relative;
            }

            .breadcrumb-line-component &amp;:last-child &gt; a {
                .border-right-radius(@border-radius-base);
            }
        }

        // Hide collapsible toggler
        [data-toggle="collapse"] {
            display: none;
        }
    }

    // Mobile view
    .breadcrumb-line:not(.breadcrumb-line-component) &amp; {
        @media (max-width: @grid-float-breakpoint-max) {
            background-color: inherit;
            margin-left: -(@grid-gutter-width);
            margin-right: -(@grid-gutter-width);
            padding-left: @grid-gutter-width;
            padding-right: @grid-gutter-width;
        }
    }
}
</pre></body></html>