mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-7331] - Angular 15 - View details sidebar (#3731)
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
.adf-comments-tab-container {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.adf-comments-form-field {
|
||||||
|
div:first-child {
|
||||||
|
background-color: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
@@ -32,9 +32,10 @@ import { NodeCommentsModule } from '@alfresco/adf-content-services';
|
|||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [MatCardModule, NodeCommentsModule],
|
imports: [MatCardModule, NodeCommentsModule],
|
||||||
selector: 'app-comments-tab',
|
selector: 'app-comments-tab',
|
||||||
template: `<mat-card appearance="raised"><adf-node-comments [readOnly]="!canUpdateNode" [nodeId]="node?.id"></adf-node-comments></mat-card>`,
|
template: `<mat-card class="adf-comments-tab-container" appearance="raised"><adf-node-comments [readOnly]="!canUpdateNode" [nodeId]="node?.id"></adf-node-comments></mat-card>`,
|
||||||
styles: ['app-comments-tab mat-card { padding: 16px }'],
|
styles: ['app-comments-tab mat-card { padding: 16px }'],
|
||||||
encapsulation: ViewEncapsulation.None
|
encapsulation: ViewEncapsulation.None,
|
||||||
|
styleUrls: ['./comments-tab.component.scss']
|
||||||
})
|
})
|
||||||
export class CommentsTabComponent implements OnInit {
|
export class CommentsTabComponent implements OnInit {
|
||||||
@Input()
|
@Input()
|
||||||
|
@@ -38,6 +38,10 @@
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mdc-menu-surface.mat-mdc-select-panel:is(div) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.adf-content-node-selector-content-list .adf-datatable-list .adf-datatable-selected.mat-icon > svg {
|
.adf-content-node-selector-content-list .adf-datatable-list .adf-datatable-selected.mat-icon > svg {
|
||||||
fill: var(--theme-blue-button-color);
|
fill: var(--theme-blue-button-color);
|
||||||
}
|
}
|
||||||
|
@@ -18,6 +18,11 @@ mat-icon {
|
|||||||
color: var(--theme-secondary-text);
|
color: var(--theme-secondary-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mdc-text-field--filled:not(.mdc-text-field--disabled) {
|
||||||
|
background-color: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.mat-mdc-button > .mat-icon {
|
.mat-mdc-button > .mat-icon {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user