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
59 lines
1.3 KiB
SCSS
59 lines
1.3 KiB
SCSS
@mixin adf-content-node-selector-dialog-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$foreground: map-get($theme, foreground);
|
|
$background: map-get($theme, background);
|
|
|
|
.mat-dialog-container {
|
|
padding: 0;
|
|
}
|
|
|
|
.adf-content-node-selector-dialog {
|
|
&-title,
|
|
&-content,
|
|
&-actions {
|
|
padding: 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
&-content{
|
|
padding-top: 0;
|
|
}
|
|
|
|
&-title::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&-actions {
|
|
padding: 8px;
|
|
background-color: mat-color($background, background);
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
color: mat-color($foreground, secondary-text);
|
|
|
|
button {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
&-cancel {
|
|
font-weight: normal;
|
|
}
|
|
|
|
&-choose {
|
|
font-weight: normal;
|
|
|
|
&[disabled] {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
&:enabled {
|
|
color: mat-color($primary);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|