Skip to content

Commit

Permalink
Fix breadcrumbs search results text sometimes disappearing
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Joe authored and Damian Mooyman committed Jan 9, 2017
1 parent 07f0527 commit cdd86aa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions admin/client/dist/styles/bundle.css
Expand Up @@ -14950,8 +14950,13 @@ div.TreeDropdownField a.jstree-loading .jstree-pageicon{
float:none;
}

.breadcrumb>li.breadcrumb__item--last.breadcrumb__item--no-crumb h2,.breadcrumb__item--last.breadcrumb__item--no-crumb h2{
padding-right:1px;
}

.breadcrumb>li.breadcrumb__item--last.breadcrumb__item--no-crumb:before,.breadcrumb__item--last.breadcrumb__item--no-crumb:before{
content:"";
padding:0;
}

.breadcrumb__item-title--last,.cms h2.breadcrumb__item-title--last{
Expand Down
11 changes: 9 additions & 2 deletions admin/client/src/components/Breadcrumb/Breadcrumb.scss
Expand Up @@ -11,8 +11,15 @@
display: block;
float: none;

&.breadcrumb__item--no-crumb:before {
content: "";
&.breadcrumb__item--no-crumb {
h2 {
padding-right: 1px;
}

&:before {
content: "";
padding: 0;
}
}
}

Expand Down

0 comments on commit cdd86aa

Please sign in to comment.