removing makeUrl from html, updating css

This commit is contained in:
Shelby Sturgis 2016-03-17 11:25:14 -07:00
parent 1ddc94d3b6
commit a27de44dc7
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
<ul>
<li ng-repeat="crumb in crumbs">
<a ng-href="{{ makeUrl(crumb) }}">{{crumb}}</a>
<span>{{crumb}}</span>
<span ng-hide="$last"> / </span>
</li>
</ul>

View file

@ -297,16 +297,16 @@ bread-crumbs {
>li {
display: inline;
>a {
>span {
color: @kibanaGray2;
}
>a:hover {
>span:hover {
color: @kibanaGray1;
}
}
>li:last-child {
>a {
>span {
color: @kibanaGray1;
}
}