Files
alfresco-ng2-components/ng2-components/ng2-alfresco-documentlist/src/components/breadcrumb/breadcrumb.component.scss
Popovics András ac16369659 [ADF-1038] - Dropddown Breadcrumb component (#2092)
* Update material to beta8

* Install @angular/cdk

* DropdownBreadcrumb component

* Style fixes

* Fix styling issues after rebase

* Fix Material issue in processlist

* Update material again, because of rebase errors... :/

* Fix new tslint rule raised errors
2017-08-01 10:20:19 +01:00

44 lines
877 B
SCSS

@import 'theming';
$breadcrumb-chevron-spacer: 2px;
.adf-breadcrumb {
display: flex;
&-container {
margin: 0;
padding: 0;
list-style-type: none;
cursor: default;
display: flex;
overflow: hidden;
height: 25px;
}
&-item {
padding-right: $breadcrumb-chevron-spacer;
color: $alfresco-secondary-text-color;
overflow: hidden;
display: flex;
line-height: 24px;
&-anchor {
color: inherit;
text-decoration: none;
display: block;
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
&-anchor:hover, &.active {
color: $alfresco-primary-text-color;
}
&.active {
display: block;
}
}
}