Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Sticky breadcrumbs II #1106

Merged
merged 2 commits into from Feb 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions styles/settings-view.less
Expand Up @@ -15,15 +15,15 @@
z-index: 1;
margin-bottom: 0;
padding: 0 @breadcrumb-padding;
font-size: 1.2em;
line-height: 5rem;
font-size: 1.125em;
line-height: 3rem;
color: @text-color-subtle;
list-style: none;
border-bottom: 1px solid @base-border-color;
background-color: @base-background-color;

+ .section {
margin-top: 5rem; // space for breadcrumbs
margin-top: 3rem; // space for breadcrumbs
border-top: none;
}

Expand All @@ -34,12 +34,13 @@
}

+ li:before {
content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
content: "/"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 .75em ;
}
}

> .active a {
font-weight: 600;
color: @text-color-highlight;
}

Expand Down