mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* 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
44 lines
877 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|