[ADF-1431] Destination Picker: Display path of the folder in search results (#2762)

* Add initial implementation with style fixes

* Further style fixes

* Add tests, styling fixes
This commit is contained in:
Popovics András
2017-12-05 01:09:40 +00:00
committed by Eugenio Romano
parent f341137b06
commit cb06c8a963
7 changed files with 236 additions and 34 deletions

View File

@@ -62,6 +62,27 @@
.adf-toolbar .mat-toolbar {
border-bottom-width: 0;
font-size: 14px;
&.mat-toolbar-single-row {
height: auto;
}
}
&-breadcrumb {
.adf-dropdown-breadcumb-trigger {
outline: none;
.mat-icon {
color: mat-color($foreground, base, 0.45);
&:hover {
color: mat-color($foreground, base, 0.65);
}
}
}
.adf-dropddown-breadcrumb-item-chevron {
color: mat-color($foreground, base, 0.45);
}
}
&-list {
@@ -87,9 +108,16 @@
.adf-data-table-cell {
padding-top: 8px;
padding-bottom: 8px;
border-top: none;
height: 30px;
& .adf-name-location-cell-location {
display: none;
}
& .adf-name-location-cell-name {
padding: 0;
}
&--image {
padding-left: 16px;
padding-right: 8px;
@@ -103,6 +131,12 @@
tbody tr {
height: auto !important;
&:first-child {
.adf-data-table-cell {
border-top: none;
}
}
&:last-child {
.adf-data-table-cell {
border-bottom: none;
@@ -110,6 +144,32 @@
}
}
}
&-searchLayout {
.adf-data-table {
.adf-data-table-cell {
height: 56px;
padding-bottom: 24px;
& .adf-name-location-cell-location {
display: block
}
& .adf-name-location-cell-name {
padding: 18px 0 2px 0;
}
&.adf-content-selector-modified-cell {
display: none;
}
&.adf-content-selector-modifier-cell {
display: none;
}
}
}
}
}
}