mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 07:26:03 -03:30
Custom styling of the breadcrumb template - removed dependency on Bootstrap
This commit is contained in:
committed by
Jared Tabor
parent
ae145affe6
commit
8365eaaae9
@@ -39,6 +39,29 @@
|
|||||||
flex: initial;
|
flex: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.BreadCrumb > ol {
|
||||||
|
padding: 0px 15px;
|
||||||
|
list-style: none;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-radius: 4px;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.BreadCrumb > ol > li {
|
||||||
|
display: inline-block;
|
||||||
|
// content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
|
||||||
|
padding: 0 5px;
|
||||||
|
color: #b7b7b7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.BreadCrumb > ol > li:before {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.BreadCrumb > ol > li > .active {
|
||||||
|
color: #123123;
|
||||||
|
}
|
||||||
|
|
||||||
@breadcrumb-breakpoint: 900px;
|
@breadcrumb-breakpoint: 900px;
|
||||||
|
|
||||||
@media screen and (max-width: @breadcrumb-breakpoint) {
|
@media screen and (max-width: @breadcrumb-breakpoint) {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<ol class="breadcrumb">
|
<ol>
|
||||||
<li ng-repeat="step in steps | limitTo:(steps.length-1)">
|
<li ng-repeat="step in steps | limitTo:(steps.length-1)">
|
||||||
<a href="{{step.ncyBreadcrumbLink}}" ng-bind-html="step.ncyBreadcrumbLabel"></a>
|
<a href="{{step.ncyBreadcrumbLink}}" ng-bind-html="step.ncyBreadcrumbLabel"></a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user