mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-2065] created dialog component for content node selector * [ADF-2065] removing SiteModel from site dropdown to use SitePaging model of js-api * [ADF-2065] - removed site model and updated documentation * [ADF-2065] fixed test for site component * [ADF-2065] refactored content node selector and created content node selector dialog * [ADF-2065] fixed test on site-api service * [ADF-2065] added a new content node dialog service to centralise the logic for content node dialog * [ADF-2065] start adding test for node-actions service| * [ADF-2065] added test for node-actions service * [ADF-2065] added test for node action service * [ADF-2065] renamed components to keep backward compatibility * [ADF-2065] added input just for backward compatibility * [ADF-2065] added some changes for backward compatibility and updated documentation * [ADF-2065] updated documentation for content node selector
162 lines
4.4 KiB
SCSS
162 lines
4.4 KiB
SCSS
@mixin adf-content-node-selector-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$foreground: map-get($theme, foreground);
|
|
$background: map-get($theme, background);
|
|
|
|
.adf-content-node-selector {
|
|
|
|
&-content {
|
|
padding-top: 0;
|
|
|
|
&-input {
|
|
width: 100%;
|
|
|
|
&-icon {
|
|
color: mat-color($foreground, disabled-button);
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: mat-color($foreground, base);
|
|
}
|
|
}
|
|
}
|
|
|
|
.mat-input-underline .mat-input-ripple {
|
|
height: 1px;
|
|
transition: none;
|
|
}
|
|
|
|
.adf-site-dropdown-container {
|
|
.mat-form-field {
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
|
|
.adf-site-dropdown-list-element {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
|
|
.mat-select-trigger {
|
|
font-size: 14px;
|
|
}
|
|
|
|
}
|
|
|
|
.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 {
|
|
height: 200px;
|
|
overflow: auto;
|
|
border: 1px solid mat-color($foreground, base, 0.07);
|
|
|
|
.adf-highlight {
|
|
color: mat-color($primary);
|
|
}
|
|
|
|
.adf-data-table {
|
|
border: none;
|
|
|
|
.adf-no-content-container {
|
|
text-align: center;
|
|
}
|
|
|
|
thead {
|
|
display: none;
|
|
}
|
|
|
|
.adf-data-table-cell {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
height: 30px;
|
|
|
|
& .adf-name-location-cell-location {
|
|
display: none;
|
|
}
|
|
|
|
& .adf-name-location-cell-name {
|
|
padding: 0;
|
|
}
|
|
|
|
&--image {
|
|
padding-left: 16px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
&--text {
|
|
padding-left: 8px;
|
|
}
|
|
}
|
|
|
|
tbody tr {
|
|
height: auto !important;
|
|
|
|
&:first-child {
|
|
.adf-data-table-cell {
|
|
border-top: none;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.adf-data-table-cell {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|