mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* add stylelint * fix style first part * fix style second part * fix style third part * fix style fourth part * Fix e2e tests first part * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * fix insights * fix style abotu component * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * [ADF-3746] Rebase branch * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * Fix list error * fix new style added * tslint fix * [ADF-3746] Fix scss errors on Process Filters Cloud component
74 lines
1.7 KiB
SCSS
74 lines
1.7 KiB
SCSS
@mixin adf-breadcrumb-dropdown-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$dropdownHorizontalOffset: 30px;
|
|
|
|
.adf {
|
|
&-dropdown-breadcrumb {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
}
|
|
|
|
&-dropdown-breadcrumb-trigger {
|
|
cursor: pointer;
|
|
padding: 0;
|
|
border: none;
|
|
background: transparent;
|
|
|
|
&:focus {
|
|
color: mat-color($primary);
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
&-dropdown-breadcrumb-item-chevron {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
&-dropdown-breadcrumb-trigger.adf-isRoot {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&-dropdown-breadcrumb-path {
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
margin-top: 35px;
|
|
margin-left: -$dropdownHorizontalOffset;
|
|
|
|
&.mat-select {
|
|
width: 0;
|
|
}
|
|
}
|
|
|
|
&-current-folder {
|
|
text-align: left;
|
|
margin-left: $dropdownHorizontalOffset;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: inline-block;
|
|
width: 75%;
|
|
}
|
|
|
|
&-current-folder.adf-isRoot {
|
|
margin-left: 0;
|
|
}
|
|
|
|
&-dropdown-breadcrumb-path-option.mat-option {
|
|
height: 28px;
|
|
line-height: 28px;
|
|
padding: 0 12px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
&-dropdown-breadcrumb-path-option.mat-option:first-child {
|
|
padding-top: 4px;
|
|
}
|
|
|
|
&-dropdown-breadcrumb-path-option.mat-option:last-child {
|
|
padding-bottom: 4px;
|
|
}
|
|
}
|
|
}
|